create__ static method

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

Implementation

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