sharedInstance static method

Future<BMKMapManager?> sharedInstance()

Implementation

static Future<BMKMapManager?> sharedInstance() async {
  // print log
  if (fluttifyLogEnabled) {
    debugPrint('fluttify-dart: BMKMapManager::sharedInstance([])');
  }

  // invoke native method
  final __result__ = await kBmapCoreFluttifyChannel.invokeMethod('BMKMapManager::sharedInstance', );


  // handle native call


  return BmapCoreFluttifyIOSAs<BMKMapManager>(__result__);
}