toBorsh method

Uint8List toBorsh()
inherited

Implementation

Uint8List toBorsh() {
  final writer = BinaryWriter();

  const BOption(BU64()).write(writer, maxSupply);

  return writer.toArray();
}