getStatus method

Future<int?> getStatus()

Implementation

Future<int?> getStatus() async {
  // print log
  if (fluttifyLogEnabled) {
    debugPrint('fluttify-dart: com.amap.api.fence.GeoFence@$refId::getStatus([])');
  }

  // invoke native method
  final __result__ = await kAmapLocationFluttifyChannel.invokeMethod('com.amap.api.fence.GeoFence::getStatus', {"__this__": this});


  // handle native call


  return __result__;
}