pointDistanceTo method

  1. @override
Future<num?> pointDistanceTo(
  1. MPPoint it,
  2. MPPoint other
)
override

Implementation

@override
Future<num?> pointDistanceTo(MPPoint it, MPPoint other) {
  return utilMethodChannel.invokeMethod<num>("UTL_pointDistanceTo",
      {"it": it._jsonEncode(), "other": other._jsonEncode()});
}