Prepends value only if this string is not empty.
value
String prefixNotEmpty(String? value) { if (isEmpty || value == null || value.isEmpty) return this; return value + this; }