SupplierInfo constructor

SupplierInfo({
  1. List<String>? phones,
  2. String? name,
  3. String? inn,
})

Implementation

SupplierInfo({
  this.phones,
  this.name,
  this.inn,
});