decode method
ABI-decode from data at byte offset.
Returns (decoded value, bytes consumed from head).
Implementation
@override
(dynamic, int) decode(Uint8List data, int offset) {
final bytes = Uint8List.fromList(data.sublist(offset, offset + length));
return (bytes, 32);
}