create__ static method

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

Implementation

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