setFloor method

Future<void> setFloor(
  1. String var1
)

Implementation

Future<void> setFloor(String var1) async {
  // print log
  if (fluttifyLogEnabled) {
    debugPrint('fluttify-dart: com.amap.api.location.AMapLocation@$refId::setFloor([\'var1\':$var1])');
  }

  // invoke native method
  final __result__ = await kAmapLocationFluttifyChannel.invokeMethod('com.amap.api.location.AMapLocation::setFloor', {"var1": var1, "__this__": this});


  // handle native call


  return __result__;
}