copyWith method
Implementation
AgeVerificationParameters copyWith({
int? minAge,
String? verificationBotUsername,
String? country,
}) => AgeVerificationParameters(
minAge: minAge ?? this.minAge,
verificationBotUsername:
verificationBotUsername ?? this.verificationBotUsername,
country: country ?? this.country,
);