parse method

T parse(
  1. Uint8List bytes
)

Implementation

T parse(Uint8List bytes) {
  final reader = BcsReader(bytes);
  return read(reader);
}