setCoordinateTypeUsedInBaiduMapSDK_batch static method

Future<List<bool?>> setCoordinateTypeUsedInBaiduMapSDK_batch(
  1. List<BMK_COORD_TYPE?> coorType
)

Implementation

static Future<List<bool?>> setCoordinateTypeUsedInBaiduMapSDK_batch(List<BMK_COORD_TYPE?> coorType) async {
  assert(true);

  // invoke native method
  final resultBatch = await kBmapCoreFluttifyChannel.invokeMethod('BMKMapManager::setCoordinateTypeUsedInBaiduMapSDK_batch', [for (int __i__ = 0; __i__ < coorType.length; __i__++) {"coorType": coorType[__i__]?.toValue()}]);


  return (resultBatch as List).map((__result__) => __result__).cast<bool?>().toList();
}