encodeTo method

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

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

Implementation

@override
void encodeTo(PalletMetadataV15 value, Output output) {
  PalletMetadata.codec.encodeTo(value, output);
  SequenceCodec(StrCodec.codec).encodeTo(value.docs, output); // New in V15
}