AccountInfo constructor

AccountInfo({
  1. int? accountInfoId,
  2. String? personInChargeName,
  3. String? phoneNumber,
  4. String? vendorEmail,
  5. String? isPublished,
})

Implementation

AccountInfo({
  this.accountInfoId,
  this.personInChargeName,
  this.phoneNumber,
  this.vendorEmail,
  // this.selectedBusinessCate,
  this.isPublished,
});