sequenceize method

String sequenceize()

Converts a string into a sequence name.

Implementation

String sequenceize() {
  if (this == null) {
    throw ArgumentError('string: $this');
  }
  if (this!.isEmpty) {
    return '';
  }
  return '${this!.underscore()}_seq';
}