LeanResponse constructor

LeanResponse({
  1. required String status,
  2. String? bankId,
  3. String? message,
  4. String? exitPoint,
  5. bool? bankIsSupported,
  6. String? lastApiResponse,
  7. String? secondaryStatus,
})

Implementation

LeanResponse({
  required this.status,
  this.bankId,
  this.message,
  this.exitPoint,
  this.bankIsSupported,
  this.lastApiResponse,
  this.secondaryStatus,
});