typeArgsWithParens property

String typeArgsWithParens

Implementation

String get typeArgsWithParens {
  if (this.typeArgs.isNotEmpty) {
    return '<' + this.typeArgs.join(',') + '>';
  } else {
    return '';
  }
}