serialize method

  1. @override
List<int> serialize()
override

Serializes this parameter value to binary format.

Returns a list of bytes representing the parameter value.

Implementation

@override
List<int> serialize() => [_tagBigInt, ..._u32Le(8), ..._i64Le(value)];