Enhancements constructor

Enhancements({
  1. String? merchantName,
  2. String? website,
  3. String? logoUrl,
  4. String? checkNumber,
  5. required PaymentChannel paymentChannel,
  6. required String? categoryId,
  7. required List<String> category,
  8. required Location location,
  9. PersonalFinanceCategory? personalFinanceCategory,
  10. String? personalFinanceCategoryIconUrl,
  11. List<Counterparty>? counterparties,
})

Implementation

Enhancements({
  this.merchantName,
  this.website,
  this.logoUrl,
  this.checkNumber,
  required this.paymentChannel,
  required this.categoryId,
  required this.category,
  required this.location,
  this.personalFinanceCategory,
  this.personalFinanceCategoryIconUrl,
  this.counterparties,
});