TripUpdate_TripProperties constructor

TripUpdate_TripProperties({
  1. String? tripId,
  2. String? startDate,
  3. String? startTime,
  4. String? shapeId,
})

Implementation

factory TripUpdate_TripProperties({
  $core.String? tripId,
  $core.String? startDate,
  $core.String? startTime,
  $core.String? shapeId,
}) {
  final _result = create();
  if (tripId != null) {
    _result.tripId = tripId;
  }
  if (startDate != null) {
    _result.startDate = startDate;
  }
  if (startTime != null) {
    _result.startTime = startTime;
  }
  if (shapeId != null) {
    _result.shapeId = shapeId;
  }
  return _result;
}