stop method

Future<bool?> stop()

Implementation

Future<bool?> stop() async {
  // print log
  if (fluttifyLogEnabled) {
    debugPrint('fluttify-dart: BMKMapManager@$refId::stop([])');
  }

  // invoke native method
  final __result__ = await kBmapCoreFluttifyChannel.invokeMethod('BMKMapManager::stop', {"__this__": this});


  // handle native call


  return __result__;
}