info method

Map<String, dynamic> info()

Returns information about the this sequence.

Implementation

Map<String, dynamic> info() {
  return {
    'seq': seq,
    'type': type,
    'monomers': _len,
    'name': this._name,
    'id': this._id,
    'desc': this._desc
  };
}