label property

String label

Implementation

String get label {
  return switch (this) {
    down => 'Key Down',
    up => 'Key Up',
    repeat => 'Key Repeat',
  };
}