addBytes method Null safety

void addBytes(
  1. List<int> bytes
)

添加字节数组

Implementation

void addBytes(List<int> bytes) {
  _data.add(bytes);
}