label property

String get label

Implementation

String get label {
  switch (this) {
    case OrbState.idle:      return 'Tap to activate';
    case OrbState.listening: return 'Listening…';
    case OrbState.thinking:  return 'Thinking…';
    case OrbState.speaking:  return 'Speaking…';
  }
}