plus method

String? plus(
  1. String text
)

Merge text

Implementation

String? plus(String text) {
  if (this == null) {
    return text;
  }
  return '${this}$text';
}