fromJson static method
Deserializes the result from JSON.
Implementation
static GetOffsetResult fromJson(Map<String, dynamic> json) {
return GetOffsetResult(dx: json['dx'] as double, dy: json['dy'] as double);
}
Deserializes the result from JSON.
static GetOffsetResult fromJson(Map<String, dynamic> json) {
return GetOffsetResult(dx: json['dx'] as double, dy: json['dy'] as double);
}