google_mobile_ads 包中的测试设备 ID 放在哪里?

Where to put test device IDs in google_mobile_ads package?

我正在使用 firebase_admob 包,我可以在其中添加测试设备 ID:

var targetingInfo = MobileAdTargetingInfo(
  testDevices: <String> [...]
);

但是 google_mobile_ads 我找不到类似的东西。那么,我可以在哪里放置测试设备 ID?我只能使用测试广告单元吗?

MobileAds 实例上使用 updateRequestConfiguration 回调,并提供测试设备 ID。

MobileAds.instance
  ..initialize()
  ..updateRequestConfiguration(RequestConfiguration(
    testDeviceIds: <String>[],
  ));