label property

String get label

Human-readable classification for ledgers and receipts.

Implementation

String get label => switch (kind) {
  StormFailureKind.http => 'http-$httpStatus',
  StormFailureKind.auth => 'auth-$authCode',
  StormFailureKind.partial => 'partial-write',
  StormFailureKind.unknown => storm.kind,
};