value property

String get value

Implementation

String get value {
  switch (this) {
    case HyperKycStatus.autoApproved:
      return HyperKycConstants.autoApproved;
    case HyperKycStatus.autoDeclined:
      return HyperKycConstants.autoDeclined;
    case HyperKycStatus.manuallyApproved:
      return HyperKycConstants.manuallyApproved;
    case HyperKycStatus.manuallyDeclined:
      return HyperKycConstants.manuallyDeclined;
    case HyperKycStatus.ongoing:
      return HyperKycConstants.ongoing;
    case HyperKycStatus.needsReview:
      return HyperKycConstants.needsReview;
    case HyperKycStatus.userCancelled:
      return HyperKycConstants.userCancelled;
    case HyperKycStatus.error:
      return HyperKycConstants.error;
  }
}