sequenceize method
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';
}
Converts a string into a sequence name.
String sequenceize() {
if (this == null) {
throw ArgumentError('string: $this');
}
if (this!.isEmpty) {
return '';
}
return '${this!.underscore()}_seq';
}