HeliumPoCWitness constructor

HeliumPoCWitness({
  1. required int timestamp,
  2. required String gateway,
  3. required String owner,
  4. required int signal,
  5. double? snr,
  6. required String location,
  7. required String locationHex,
  8. required String packetHash,
  9. bool? isValid,
  10. String? invalidReason,
  11. double? frequency,
  12. String? datarate,
  13. int? channel,
})

Creates a new instance.

Implementation

HeliumPoCWitness({
  required this.timestamp,
  required this.gateway,
  required this.owner,
  required this.signal,
  this.snr,
  required this.location,
  required this.locationHex,
  required this.packetHash,
  this.isValid,
  this.invalidReason,
  this.frequency,
  this.datarate,
  this.channel,
});