encode method
Encodes the data to platform representation. By default this is a simple passthrough function.
Implementation
FutureOr<Object?> encode(T value, PlatformFormat format) {
return value;
}
Encodes the data to platform representation. By default this is a simple passthrough function.
FutureOr<Object?> encode(T value, PlatformFormat format) {
return value;
}