value property

String value

Implementation

String get value {
  switch (this) {
    case ListType.all:
      return "all";
    case ListType.personal:
      return "personal";
    case ListType.official:
      return "official";
    case ListType.watchlists:
      return "watchlists";
    case ListType.recommendations:
      return "recommendations";
  }
}