Appends value only if this string is not empty.
value
String appendNotEmpty(String value) => isEmpty ? '' : this + value;