humanReadable property

String get humanReadable

Returns a human-readable string representation.

Example:

status.humanReadable; // "Forward"

Implementation

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