copyWith method

AgeVerificationParameters copyWith({
  1. int? minAge,
  2. String? verificationBotUsername,
  3. String? country,
})

Implementation

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