putSemicolon property

String putSemicolon

Implementation

String get putSemicolon {
  var code = this;
  if (code.endsWith(';')) {
    return this;
  }
  return '$code;';
}