create_batch__ static method

Future<List<BMKMapManager>> create_batch__(
  1. int length, {
  2. bool init = true,
})

Implementation

static Future<List<BMKMapManager>> create_batch__(int length, { bool init = true /* ios only */ }) async {
  assert(true);
  final __result_batch__ = await  kBmapCoreFluttifyChannel.invokeListMethod(
    'ObjectFactory::create_batchBMKMapManager',
    {'length': length, 'init': init}
  );
  return __result_batch__
      ?.map((it) => BmapCoreFluttifyIOSAs<BMKMapManager>(it))
      .where((element) => element !=null)
      .cast<BMKMapManager>()
      .toList() ?? <BMKMapManager>[];
}