AppAuthnProto_SmsVerifyTokenRequest constructor

AppAuthnProto_SmsVerifyTokenRequest({
  1. String? phone,
  2. String? token,
  3. String? pushToken,
  4. String? uid,
  5. AppAuthnProto_AppType? appType,
})

Implementation

factory AppAuthnProto_SmsVerifyTokenRequest({
  $core.String? phone,
  $core.String? token,
  $core.String? pushToken,
  $core.String? uid,
  AppAuthnProto_AppType? appType,
}) {
  final result = create();
  if (phone != null) result.phone = phone;
  if (token != null) result.token = token;
  if (pushToken != null) result.pushToken = pushToken;
  if (uid != null) result.uid = uid;
  if (appType != null) result.appType = appType;
  return result;
}