Verification constructor

Verification({
  1. String? payload,
  2. String? reason,
  3. String? signature,
  4. bool? verified,
})

Implementation

Verification({
  this.payload,
  this.reason,
  this.signature,
  this.verified,
});