addGeotag method Null safety
- JSONObject data
Adds a new geotag
Implementation
Future<Result<Location, LocationError>> addGeotag(JSONObject data) {
return _invokeSdkMethod(
SdkMethod.addGeotag, serializeGeotagData(data, null))
.then((value) {
return deserializeLocationResult(value);
});
}