CustomerConfiguration constructor

CustomerConfiguration({
  1. String? cardName,
  2. String? customerName,
  3. String? logoId,
})

Constructs a CustomerConfiguration with optional parameters.

  • cardName The differentiated display name for the card product.
  • customerName The differentiated display name for the company.
  • logoId The differentiated logo for the company.

Implementation

CustomerConfiguration({
  this.cardName,
  this.customerName,
  this.logoId,
});