set method

  1. @Deprecated('Please use the specific property for the field number')
void set(
  1. int field,
  2. List<int> value
)

Sets a data element with index.

Implementation

@Deprecated('Please use the specific property for the field number')
void set(int field, List<int> value) {
  _data[field] = Uint8List.fromList(value);
}