Brand constructor

Brand({
  1. String? code,
  2. String? name,
  3. String? placeholder,
  4. String? type,
})

Implementation

Brand({
  this.code,
  this.name,
  this.placeholder,
  this.type,
});