create__ static method

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

Implementation

static Future<AMapLocationPOIItem> create__({ bool init = true /* ios only */ }) async {
  final __result__ = await kAmapLocationFluttifyChannel.invokeMethod(
    'ObjectFactory::createAMapLocationPOIItem',
    {'init': init}
  );
  return AmapLocationFluttifyIOSAs<AMapLocationPOIItem>(__result__)!;
}