BranchModel constructor

const BranchModel({
  1. int id = 0,
  2. required String name,
  3. bool status = true,
  4. String? description,
})

Implementation

const BranchModel({
  super.id = 0,
  required super.name,
  super.status,
  this.description,
});