addSpaceAndCommaIfNotEmpty property
String
get
addSpaceAndCommaIfNotEmpty
If string is not blankisNotBlank append the string with a ', '
Implementation
String get addSpaceAndCommaIfNotEmpty => isNotBlank ? '$this, ' : '';