frequencyLabel property

String get frequencyLabel

Implementation

String get frequencyLabel {
  switch (phase.value) {
    case PomodoroPhase.work:
      return 'Gamma 40Hz';
    case PomodoroPhase.rest:
      return 'Alpha 10Hz';
    case PomodoroPhase.longRest:
      return 'Theta 7Hz';
    default:
      return '';
  }
}