initGeoQ static method

Future<String?> initGeoQ(
  1. String apiKey,
  2. String notificationTitle,
  3. String notificationDescription
)

Implementation

static Future<String?> initGeoQ(String apiKey, String notificationTitle,
    String notificationDescription) async {
  String? deviceId = await _channel.invokeMethod('initGeoQ', {
    "apiKey": apiKey,
    "notificationTitle": notificationTitle,
    "notificationDescription": notificationDescription
  });
  return deviceId;
}