displayName property

String get displayName

Implementation

String get displayName {
  switch (this) {
    case LokotroPaymentStatus.pending:
      return 'Pending';
    case LokotroPaymentStatus.processing:
      return 'Processing';
    case LokotroPaymentStatus.approved:
      return 'Approved';
    case LokotroPaymentStatus.declined:
      return 'Declined';
    case LokotroPaymentStatus.failed:
      return 'Failed';
    case LokotroPaymentStatus.cancelled:
      return 'Cancelled';
    case LokotroPaymentStatus.expired:
      return 'Expired';
    case LokotroPaymentStatus.refunded:
      return 'Refunded';
    case LokotroPaymentStatus.pendingBankProofUpload:
      return 'Pending Proof Upload';
  }
}