deserialize method
Deserializes the given value from a DogNativeCodec native value.
Implementation
@override
Rect deserialize(value, DogEngine engine) {
final [left, top, right, bottom] = _parseDoubleTuple4(value, engine, this);
return Rect.fromLTRB(left, top, right, bottom);
}