id property

int id

Implementation

int get id {
  switch (this) {
    case UserRoleType.admin:
      return 6;
    case UserRoleType.bot:
      return 5;
    case UserRoleType.translationManager:
      return 4;
    case UserRoleType.wikiManager:
      return 3;
    case UserRoleType.universeChatManager:
      return 2;
    case UserRoleType.general:
      return 1;
  }
}