create_batch__ static method

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

Implementation

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