start_generalDelegate method

Future<bool?> start_generalDelegate(
  1. String? key,
  2. BMKGeneralDelegate? delegate
)

Implementation

Future<bool?> start_generalDelegate(String? key, BMKGeneralDelegate? delegate) async {
  // print log
  if (fluttifyLogEnabled) {
    debugPrint('fluttify-dart: BMKMapManager@$refId::start([\'key\':$key])');
  }

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


  // handle native call


  return __result__;
}