BranchUserModel constructor

const BranchUserModel({
  1. required int userId,
  2. required int branchId,
  3. required int roleId,
  4. bool status = false,
})

Implementation

const BranchUserModel({
  required this.userId,
  required this.branchId,
  required this.roleId,
  this.status = false,
});