orDash method
Returns the value or -- when null or blank.
Implementation
String orDash() => (this == null || this!.trim().isEmpty) ? '--' : this!;
Returns the value or -- when null or blank.
String orDash() => (this == null || this!.trim().isEmpty) ? '--' : this!;