BreakStartRequest constructor

BreakStartRequest({
  1. String? restaurantId,
  2. String? restaurantEmployeeId,
})

Implementation

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