showDashIfEmpty property

String showDashIfEmpty

Add prefix if not empty else return empty string

Implementation

String get showDashIfEmpty => isEmpty ? '-' : this;