unset method

  1. @Deprecated('Please use the specific property for the field number')
void unset(
  1. int field
)

Unset a data element for index.

Implementation

@Deprecated('Please use the specific property for the field number')
void unset(int field) {
  _data.remove(field);
}