unmarshal method
Deserialize a representation of type S back to the original data of type T.
unmarshal(marshal(data)) must produce an instance of T that is equivalent to
original instance data.
Implementation
@override
T unmarshal(dynamic data, [MarshalingContext? context]) => unmarshalFromBytes(data as Uint8List);