copyWith method

SetApplicationVerificationToken copyWith({
  1. int? verificationId,
  2. String? token,
})

Implementation

SetApplicationVerificationToken copyWith({
  int? verificationId,
  String? token,
}) => SetApplicationVerificationToken(
  verificationId: verificationId ?? this.verificationId,
  token: token ?? this.token,
);