Admost.startTestSuite constructor

Admost.startTestSuite(
  1. String appId
)

Opens up test screen for ad network testing, available only for testers To be tester, Google Advertising Id has to be entered in the Admost Dashboard Testers screen

Implementation

Admost.startTestSuite(String appId) {
  if (appId == null) {
    print("appId cannot be null!");
  } else {
    Map<String, String> config = {"appId": appId};
    MethodChannel _channel = const MethodChannel('admost_flutter');
    _channel.invokeMethod('startTestSuite', config);
  }
}