addGeotagWithExpectedLocation method Null safety
- String orderHandle,
- OrderStatus orderStatus,
- JSONObject data,
- Location expectedLocation
Adds a new geotag with expected location. Check Shift tracking doc to learn how to use Order handle and Order status params. Accepts:
- orderHandle - Order handle.
- orderStatus - Order status.
data
- Geotag data JSON.expectedLocation
- Expected location. Returns current location with deviation from expected location if success or LocationError if failure.
Implementation
static Future<Result<LocationWithDeviation, LocationError>>
addGeotagWithExpectedLocation(String orderHandle, OrderStatus orderStatus,
JSONObject data, Location expectedLocation) {
return _invokeSdkMethod<Map<Object?, Object?>>(
SdkMethod.addGeotag,
serializeGeotagData(
orderHandle, orderStatus, data, expectedLocation))
.then((value) {
return deserializeLocationWithDeviationResult(value);
});
}