PaymentBankingProduct constructor

PaymentBankingProduct({
  1. PaymentBankingProductObjectTypeEnum? objectType,
  2. int? id,
  3. String? createdBy,
  4. DateTime? createdDate,
  5. String? lastModifiedBy,
  6. DateTime? lastModifiedDate,
  7. String? code,
  8. String? name,
  9. Object? description,
  10. List<ProductFeature> features = const [],
  11. BankingProduct? product,
  12. List<BankingProductIdentification> identification = const [],
})

Returns a new PaymentBankingProduct instance.

Implementation

PaymentBankingProduct({
  this.objectType,
  this.id,
  this.createdBy,
  this.createdDate,
  this.lastModifiedBy,
  this.lastModifiedDate,
  this.code,
  this.name,
  this.description,
  this.features = const [],
  this.product,
  this.identification = const [],
});