encodeTo method

  1. @override
void encodeTo(
  1. int value,
  2. Output output
)
override

Convert self to a slice and append it to the destination.

Implementation

@override
void encodeTo(int value, Output output) {
  output
    ..pushByte(value.toUnsigned(8))
    ..pushByte((value >> 8).toUnsigned(8));
}