onStartCommand method

Future<int?> onStartCommand(
  1. android_content_Intent var1,
  2. int var2,
  3. int var3
)

Implementation

Future<int?> onStartCommand(android_content_Intent var1, int var2, int var3) async {
  // print log
  if (fluttifyLogEnabled) {
    debugPrint('fluttify-dart: com.amap.api.location.APSService@$refId::onStartCommand([\'var2\':$var2, \'var3\':$var3])');
  }

  // invoke native method
  final __result__ = await kAmapLocationFluttifyChannel.invokeMethod('com.amap.api.location.APSService::onStartCommand', {"var1": var1, "var2": var2, "var3": var3, "__this__": this});


  // handle native call


  return __result__;
}