addSpaceAndCommaIfNotEmpty property

String addSpaceAndCommaIfNotEmpty

If string is not blankisNotBlank append the string with a ', '

Implementation

String get addSpaceAndCommaIfNotEmpty => isNotBlank ? '$this, ' : '';