Add prefix if not empty else return empty string
String addPrefixIfNotEmpty(String prefix) { if (isEmpty) { return ''; } return '$prefix$this'; }