create_batch__ static method

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

Implementation

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