Authorization constructor

Authorization({
  1. required AuthInfo authInfo,
  2. required DateTime timeStamp,
  3. required Duration timeDelta,
  4. Nonce? nonceOverride,
})

Implementation

Authorization({
  required this.authInfo,
  required this.timeStamp,
  required this.timeDelta,
  this.nonceOverride,
}) {
  nonce = nonceOverride ?? Nonce();
}