suffix method
Convert non empty strings to lowercase and append "dots" to the beginning of the string. For example, converting "Com" to ".com"
Implementation
String suffix() => isNotEmpty ? '.${toLowerCase()}' : '';
Convert non empty strings to lowercase and append "dots" to the beginning of the string. For example, converting "Com" to ".com"
String suffix() => isNotEmpty ? '.${toLowerCase()}' : '';