AttendanceOfficeBranchModel constructor

const AttendanceOfficeBranchModel({
  1. required String address,
  2. required double branchLatitude,
  3. required double branchLongitude,
  4. required double maxRadius,
  5. required bool accepted,
  6. required WorkingFromType workingFrom,
})

Implementation

const AttendanceOfficeBranchModel({
  required this.address,
  required this.branchLatitude,
  required this.branchLongitude,
  required this.maxRadius,
  required this.accepted,
  required this.workingFrom,
});