String extEmptyNullReplacement({String replacement = '-'}) { if (this == null) return replacement; if ((this ?? '').isEmpty) return replacement; return this ?? replacement; }