setBytes method

void setBytes(
  1. int field,
  2. Uint8List? value
)

Implementation

void setBytes(int field, Uint8List? value) => value == null ? unset(field) : setComponent(field, IsoBinaryField(value));