create__ static method

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

Implementation

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