Input$UserEducationInput constructor

Input$UserEducationInput({
  1. Enum$AcademicLevel? level,
  2. String? name,
  3. String? description,
  4. List<String>? tags,
  5. DateTime? from,
  6. DateTime? to,
  7. bool? graduated,
  8. String? city,
  9. String? country,
})

Implementation

factory Input$UserEducationInput({
  Enum$AcademicLevel? level,
  String? name,
  String? description,
  List<String>? tags,
  DateTime? from,
  DateTime? to,
  bool? graduated,
  String? city,
  String? country,
}) =>
    Input$UserEducationInput._({
      if (level != null) r'level': level,
      if (name != null) r'name': name,
      if (description != null) r'description': description,
      if (tags != null) r'tags': tags,
      if (from != null) r'from': from,
      if (to != null) r'to': to,
      if (graduated != null) r'graduated': graduated,
      if (city != null) r'city': city,
      if (country != null) r'country': country,
    });