get_location_batch method

Future<List<CLLocation?>> get_location_batch()

Implementation

Future<List<CLLocation?>> get_location_batch() async {
  final resultBatch = await kBmapCoreFluttifyChannel.invokeMethod("BMKUserLocation::get_location_batch", [for (final __item__ in this) {'__this__': __item__}]);
  return (resultBatch as List).map((__result__) => BmapCoreFluttifyIOSAs<CLLocation>(__result__)).cast<CLLocation?>().toList();
}