operator + method

Future<String> operator +(
  1. String text
)

Implementation

Future<String> operator +(String text) async {
  return (await this) + text;
}