AppAuthnProto_VerifySecretRequest constructor

AppAuthnProto_VerifySecretRequest({
  1. String? phone,
  2. String? secret,
  3. String? pushToken,
  4. String? uid,
  5. Timestamp? timestamp,
  6. AppAuthnProto_AppType? appType,
})

Implementation

factory AppAuthnProto_VerifySecretRequest({
  $core.String? phone,
  $core.String? secret,
  $core.String? pushToken,
  $core.String? uid,
  $3.Timestamp? timestamp,
  AppAuthnProto_AppType? appType,
}) {
  final result = create();
  if (phone != null) result.phone = phone;
  if (secret != null) result.secret = secret;
  if (pushToken != null) result.pushToken = pushToken;
  if (uid != null) result.uid = uid;
  if (timestamp != null) result.timestamp = timestamp;
  if (appType != null) result.appType = appType;
  return result;
}