InstallResponse constructor

const InstallResponse({
  1. required String installId,
  2. required bool attributed,
  3. required double confidenceScore,
  4. required List<String> matchedFactors,
  5. DeepLinkData? deepLinkData,
})

Creates an install response

Implementation

const InstallResponse({
  required this.installId,
  required this.attributed,
  required this.confidenceScore,
  required this.matchedFactors,
  this.deepLinkData,
});