BranchUserModel constructor

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

Implementation

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