Input$LinkAccountWithLoginInput constructor

Input$LinkAccountWithLoginInput({
  1. required Input$TargetACIInput target,
  2. String? password,
  3. required String reference,
  4. String? login,
  5. Input$IPhoneInput? phone,
  6. Enum$UserEventsSourceEnum? source,
})

Implementation

factory Input$LinkAccountWithLoginInput({
  required Input$TargetACIInput target,
  String? password,
  required String reference,
  String? login,
  Input$IPhoneInput? phone,
  Enum$UserEventsSourceEnum? source,
}) =>
    Input$LinkAccountWithLoginInput._({
      r'target': target,
      if (password != null) r'password': password,
      r'reference': reference,
      if (login != null) r'login': login,
      if (phone != null) r'phone': phone,
      if (source != null) r'source': source,
    });