encodeValue method

  1. @override
Uint8List encodeValue(
  1. T x
)
override

Encode the value. This needs to be public because it is used by encodeValue() from different types. @internal

Implementation

@override
encodeValue(T x) {
  _checkType();
  return _type!.encodeValue(x);
}