isTestDevice static method

Future<bool> isTestDevice()

Returns true if this device will receive test ads. Always return false on iOS

For more info, read the documentation

Implementation

static Future<bool> isTestDevice() async {
  return (await _pluginChannel.invokeMethod<bool>('isTestDevice')) ?? false;
}