value property

String value

Implementation

String get value {
  switch (this) {
    case TimePeriod.weekly:
      return "weekly";
    case TimePeriod.monthly:
      return "monthly";
    case TimePeriod.yearly:
      return "yearly";
    case TimePeriod.all:
      return "all";
    case TimePeriod.daily:
      return "daily";
  }
}