BMKMetersPerMapPointAtLatitude function

Future<double?> BMKMetersPerMapPointAtLatitude(
  1. double latitude
)

Implementation

Future<double?> BMKMetersPerMapPointAtLatitude(double latitude) async {
  // print log
  if (fluttifyLogEnabled) {
    debugPrint('fluttify-dart: BMKMetersPerMapPointAtLatitude::BMKMetersPerMapPointAtLatitude([\'latitude\':$latitude])');
  }

  // invoke native method
  final __result__ = await kBmapUtilsFluttifyChannel.invokeMethod('BMKMetersPerMapPointAtLatitude::BMKMetersPerMapPointAtLatitude', {"latitude": latitude});


  // handle native call


  return __result__;
}