PactResponse constructor

PactResponse({
  1. required int gas,
  2. required PactResult result,
  3. required String reqKey,
  4. required String logs,
  5. String? metadata,
  6. String? continuation,
  7. required String? txId,
})

Implementation

PactResponse({
  required this.gas,
  required this.result,
  required this.reqKey,
  required this.logs,
  this.metadata,
  this.continuation,
  required this.txId,
});