Input$IplocUpdateInput constructor

Input$IplocUpdateInput({
  1. String? from,
  2. String? to,
  3. String? country,
})

Implementation

factory Input$IplocUpdateInput({
  String? from,
  String? to,
  String? country,
}) =>
    Input$IplocUpdateInput._({
      if (from != null) r'from': from,
      if (to != null) r'to': to,
      if (country != null) r'country': country,
    });