copyWith method
Implementation
FirebaseDeviceVerificationParametersPlayIntegrity copyWith({
String? nonce,
int? cloudProjectNumber,
}) => FirebaseDeviceVerificationParametersPlayIntegrity(
nonce: nonce ?? this.nonce,
cloudProjectNumber: cloudProjectNumber ?? this.cloudProjectNumber,
);