humanReadable property

String get humanReadable

Returns a human-readable string representation.

Example:

status.humanReadable; // "Forward"

Implementation

String get humanReadable => switch (this) {
  .dismissed => 'Dismissed',
  .forward => 'Forward',
  .reverse => 'Reverse',
  .completed => 'Completed',
};