id property

String id

Returns the sequence ID.

Implementation

String get id => this._id;
void id=(String newId)

Sets the sequence ID to newId.

Implementation

set id(String newId) {
  if (newId.length < 2 || 30 < newId.length) {
    Errors.invalidSeqLen(param: 'ID', min: 2, max: 30);
  }
  this._id = newId;
}