Request constructor

Request({
  1. String? id,
  2. Destination? origin,
  3. List<String>? scopes,
  4. String? version,
  5. Destination? destination,
  6. String? senderId,
  7. Network? network,
  8. AppMetadata? appMetadata,
  9. String? sourceAddress,
  10. String? senderID,
  11. String? signingType,
  12. String? payload,
})

Implementation

Request({
  /// permission
  this.id,
  this.origin,
  this.scopes,
  this.version,
  this.destination,
  this.senderId,
  this.network,
  this.appMetadata,

  /// signInPayLoad extra fields
  this.sourceAddress,
  this.senderID,
  this.signingType,
  this.payload,
});