UserActionsModel constructor

UserActionsModel({
  1. required bool isCancel,
  2. required bool isContinue,
  3. required bool isApply,
  4. required bool isTopUp,
  5. String? journeyType,
  6. String? reqId,
  7. String? kycStatus,
  8. bool? isPmrUploaded,
  9. bool? isCmrUploaded,
})

Implementation

UserActionsModel({
  required this.isCancel,
  required this.isContinue,
  required this.isApply,
  required this.isTopUp,
  this.journeyType,
  this.reqId,
  this.kycStatus,
  this.isPmrUploaded,
  this.isCmrUploaded,
});