copyWith method

FirebaseDeviceVerificationParametersPlayIntegrity copyWith({
  1. String? nonce,
  2. int? cloudProjectNumber,
})

Implementation

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