decode method

  1. @override
Int8List decode(
  1. Input input
)
override

Implementation

@override
Int8List decode(Input input) {
  final list = Int8List(length);
  for (var i = 0; i < length; i++) {
    list[i] = I8Codec.codec.decode(input);
  }
  return list;
}