Handshake constructor

Handshake({
  1. ActionType? action,
  2. String? arn,
  3. DateTime? expirationTimestamp,
  4. String? id,
  5. List<HandshakeParty>? parties,
  6. DateTime? requestedTimestamp,
  7. List<HandshakeResource>? resources,
  8. HandshakeState? state,
})

Implementation

Handshake({
  this.action,
  this.arn,
  this.expirationTimestamp,
  this.id,
  this.parties,
  this.requestedTimestamp,
  this.resources,
  this.state,
});