ClockInRequest constructor

ClockInRequest({
  1. String? restaurantId,
  2. String? roleId,
  3. String? restaurantEmployeeId,
})

Implementation

factory ClockInRequest({
  $core.String? restaurantId,
  $core.String? roleId,
  $core.String? restaurantEmployeeId,
}) {
  final $result = create();
  if (restaurantId != null) {
    $result.restaurantId = restaurantId;
  }
  if (roleId != null) {
    $result.roleId = roleId;
  }
  if (restaurantEmployeeId != null) {
    $result.restaurantEmployeeId = restaurantEmployeeId;
  }
  return $result;
}