Institution constructor

Institution({
  1. String? institutionId,
  2. String? name,
  3. List<Products>? products,
  4. List<CountryCode>? countryCodes,
  5. String? url,
  6. String? primaryColor,
  7. List<String>? routingNumbers,
  8. bool? oauth,
  9. InstitutionStatus? status,
  10. PaymentInitiationMetadata? paymentInitiationMetadata,
})

Implementation

Institution({
  this.institutionId,
  this.name,
  this.products,
  this.countryCodes,
  this.url,
  this.primaryColor,
  this.logo,
  this.routingNumbers,
  this.oauth,
  this.status,
  this.paymentInitiationMetadata,
});