st property

Map<String, bool> st
getter/setter pair

Punch-style st 4 bool in Map to control states, working-condition-state values.

Implementation

Map<String, bool> st = {
  'wake': false,
  'work': false,
  'pause': false,
  'done': false,
  'sleep': false
};