BMKMapRectMake function

Future<BMKMapRect?> BMKMapRectMake(
  1. double? x,
  2. double? y,
  3. double? width,
  4. double? height,
)

Implementation

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

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


  // handle native call


  return BmapCoreFluttifyIOSAs<BMKMapRect>(__result__);
}