Input$LogisticInput constructor

Input$LogisticInput({
  1. String? company,
  2. String? driver,
  3. List<Input$LogisticTrackerInput>? tracker,
  4. String? warehouse,
})

Implementation

factory Input$LogisticInput({
  String? company,
  String? driver,
  List<Input$LogisticTrackerInput>? tracker,
  String? warehouse,
}) =>
    Input$LogisticInput._({
      if (company != null) r'company': company,
      if (driver != null) r'driver': driver,
      if (tracker != null) r'tracker': tracker,
      if (warehouse != null) r'warehouse': warehouse,
    });