create__ static method

Future<BMKMapPoint?> create__({
  1. bool init = true,
})

Implementation

static Future<BMKMapPoint?> create__({ bool init = true /* ios only */ }) async {
  final __result__ = await kBmapCoreFluttifyChannel.invokeMethod(
    'ObjectFactory::createBMKMapPoint',
    {'init': init}
  );
  return BmapCoreFluttifyIOSAs<BMKMapPoint?>(__result__);
}