Input$AuthorizationDataInput constructor

Input$AuthorizationDataInput({
  1. String? email,
  2. String? state,
  3. String? givenName,
  4. String? familyName,
  5. required String identityToken,
  6. String? userIdentifier,
  7. String? authorizationCode,
})

Implementation

factory Input$AuthorizationDataInput({
  String? email,
  String? state,
  String? givenName,
  String? familyName,
  required String identityToken,
  String? userIdentifier,
  String? authorizationCode,
}) =>
    Input$AuthorizationDataInput._({
      if (email != null) r'email': email,
      if (state != null) r'state': state,
      if (givenName != null) r'givenName': givenName,
      if (familyName != null) r'familyName': familyName,
      r'identityToken': identityToken,
      if (userIdentifier != null) r'userIdentifier': userIdentifier,
      if (authorizationCode != null) r'authorizationCode': authorizationCode,
    });