updateLocation method

Future<void> updateLocation(
  1. double? latitude,
  2. double? longtitude
)

Implementation

Future<void> updateLocation(double? latitude, double? longtitude) async {
  return await bytedeskHttpApi.updateLocation(latitude, longtitude);
}