instantJsonName property

String get instantJsonName

Implementation

String get instantJsonName {
  switch (this) {
    case NoteIcon.comment:
      return 'comment';
    case NoteIcon.rightPointer:
      return 'rightPointer';
    case NoteIcon.rightArrow:
      return 'rightArrow';
    case NoteIcon.check:
      return 'check';
    case NoteIcon.circle:
      return 'circle';
    case NoteIcon.cross:
      return 'cross';
    case NoteIcon.insert:
      return 'insert';
    case NoteIcon.newParagraph:
      return 'newParagraph';
    case NoteIcon.note:
      return 'note';
    case NoteIcon.paragraph:
      return 'paragraph';
    case NoteIcon.help:
      return 'help';
    case NoteIcon.star:
      return 'star';
    case NoteIcon.key:
      return 'key';
  }
}