MobileAnalysisResponse constructor

MobileAnalysisResponse({
  1. required bool status,
  2. required String msg,
  3. int? key,
  4. String? name,
  5. String? source,
  6. String? clientBvn,
  7. dynamic clientNin,
  8. dynamic clientFullName,
  9. dynamic clientPhoneNumber,
  10. dynamic accountType,
  11. dynamic accountBalance,
  12. dynamic accountId,
  13. dynamic accountName,
  14. dynamic bankName,
  15. DateTime? startDate,
  16. DateTime? endDate,
  17. DateTime? createdDate,
  18. String? processingStatus,
  19. SpendAnalysis? spendAnalysis,
  20. TransactionPatternAnalysis? transactionPatternAnalysis,
  21. BehavioralAnalysis? behavioralAnalysis,
  22. CashFlowAnalysis? cashFlowAnalysis,
  23. IncomeAnalysis? incomeAnalysis,
  24. int? confidenceOnParsing,
})

Implementation

MobileAnalysisResponse({
  required this.status,
  required this.msg,
  this.key,
  this.name,
  this.source,
  this.clientBvn,
  this.clientNin,
  this.clientFullName,
  this.clientPhoneNumber,
  this.accountType,
  this.accountBalance,
  this.accountId,
  this.accountName,
  this.bankName,
  this.startDate,
  this.endDate,
  this.createdDate,
  this.processingStatus,
  this.spendAnalysis,
  this.transactionPatternAnalysis,
  this.behavioralAnalysis,
  this.cashFlowAnalysis,
  this.incomeAnalysis,
  this.confidenceOnParsing,
});