updateList method

void updateList(
  1. List<int> ints, [
  2. int off = 0,
  3. int? len
])

使用指定的字节数组更新当前校验和

Implementation

void updateList(List<int> ints, [int off = 0, int? len]) {
  update(Uint8List.fromList(ints), off, len);
}