string property

String get string

Implementation

String get string {
  switch (this) {
    case CommentShapeColor.green:
      return 'Green';
    case CommentShapeColor.red:
      return 'Red';
    case CommentShapeColor.yellow:
      return 'Yellow';
    case CommentShapeColor.blue:
      return 'Blue';
  }
}