decode method
Implementation
@override
Uint64List decode(Input input) {
final list = Uint64List(length);
for (var i = 0; i < length; i++) {
list[i] = U64Codec.codec.decode(input).toInt();
}
return list;
}
@override
Uint64List decode(Input input) {
final list = Uint64List(length);
for (var i = 0; i < length; i++) {
list[i] = U64Codec.codec.decode(input).toInt();
}
return list;
}