plus method

String plus(
  1. String after
)

Implementation

String plus(String after) {
  if (this.isNullOrBlank) return '';
  return "${this}$after";
}