AccountVerificationRequest constructor

AccountVerificationRequest({
  1. AccountId? accountId,
  2. String? provider,
  3. String? token,
})

Implementation

factory AccountVerificationRequest({
  $0.AccountId? accountId,
  $core.String? provider,
  $core.String? token,
}) {
  final result = create();
  if (accountId != null) result.accountId = accountId;
  if (provider != null) result.provider = provider;
  if (token != null) result.token = token;
  return result;
}