ScanResultWidget constructor

const ScanResultWidget({
  1. Key? key,
  2. required ScanResponse? scan,
  3. bool isWebScan = false,
})

Implementation

const ScanResultWidget({
  super.key,
  required this.scan,
  this.isWebScan = false,
});