encode method

  1. @override
Uint8List encode(
  1. bool value
)
override

Implementation

@override
Uint8List encode(bool value) {
  return FunctionParamInt8().encode(value ? BigInt.one : BigInt.zero);
}