TableActivityRequest constructor

TableActivityRequest({
  1. String? restaurantId,
  2. String? fromDateTime,
  3. String? toDateTime,
  4. String? restaurantEmployeeId,
})

Implementation

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