ApplicationModel constructor

ApplicationModel({
  1. required int id,
  2. required String myId,
  3. required bool hasMyId,
  4. required String errorReason,
  5. required String status,
  6. required String state,
  7. required String rejectionReason,
  8. required bool hasOtp,
  9. required String serverStatus,
  10. required String serverState,
  11. required String otpType,
  12. required bool hasLimit,
})

Implementation

ApplicationModel({
  required this.id,
  required this.myId,
  required this.hasMyId,
  required this.errorReason,
  required this.status,
  required this.state,
  required this.rejectionReason,
  required this.hasOtp,
  required this.serverStatus,
  required this.serverState,
  required this.otpType,
  required this.hasLimit,
});