BMKMapSizeMake function

Future<BMKMapSize?> BMKMapSizeMake(
  1. double? width,
  2. double? height
)

Implementation

Future<BMKMapSize?> BMKMapSizeMake(double? width, double? height) async {
  // print log
  if (fluttifyLogEnabled) {
    debugPrint('fluttify-dart: BMKMapSizeMake::BMKMapSizeMake([\'width\':$width, \'height\':$height])');
  }

  // invoke native method
  final __result__ = await kBmapCoreFluttifyChannel.invokeMethod('BMKMapSizeMake::BMKMapSizeMake', {"width": width, "height": height});


  // handle native call


  return BmapCoreFluttifyIOSAs<BMKMapSize>(__result__);
}