addGeotagWithExpectedLocationDeprecated method Null safety
- JSONObject data,
- Location expectedLocation
Deprecated. Use addGeotagWithExpectedLocation with orderHandle and orderStatus instead.
Implementation
static Future<Result<LocationWithDeviation, LocationError>>
addGeotagWithExpectedLocationDeprecated(
JSONObject data, Location expectedLocation) {
return _invokeSdkMethod<Map<Object?, Object?>>(SdkMethod.addGeotag,
serializeGeotagData(null, null, data, expectedLocation))
.then((value) {
return deserializeLocationWithDeviationResult(value);
});
}