Brand constructor

Brand({
  1. int? id,
  2. String? name,
  3. String? description,
  4. String? logoKey,
  5. String? baseUrl,
})

Implementation

Brand({
  this.id,
  this.name,
  this.description,
  this.logoKey,
  this.baseUrl,
});