Input$UserWorkInput constructor
Input$UserWorkInput({})
Implementation
factory Input$UserWorkInput({
String? company,
String? position,
String? description,
String? city,
String? country,
List<String>? tags,
DateTime? from,
DateTime? to,
bool? current,
}) =>
Input$UserWorkInput._({
if (company != null) r'company': company,
if (position != null) r'position': position,
if (description != null) r'description': description,
if (city != null) r'city': city,
if (country != null) r'country': country,
if (tags != null) r'tags': tags,
if (from != null) r'from': from,
if (to != null) r'to': to,
if (current != null) r'current': current,
});