sendGpsLocation method

Future<void> sendGpsLocation(
  1. double longitude,
  2. double latitude
)

Implementation

Future<void> sendGpsLocation(double longitude, double latitude) {
  return mConnconst.invokeMethod("sendGpsLocation", <String, double>{"longitude": longitude, "latitude": latitude});
}