OperationDetails constructor

OperationDetails({
  1. OperationKind? kind,
  2. String? amount,
  3. String? destination,
  4. String? source,
  5. String? gasLimit,
  6. String? storageLimit,
  7. String? fee,
  8. String? counter,
  9. String? entrypoint,
  10. List<Map<String, dynamic>>? code,
  11. dynamic storage,
  12. dynamic parameters,
})

Constructor for creating OperationDetails object.

Implementation

OperationDetails({
  this.kind,
  this.amount,
  this.destination,
  this.source,
  this.gasLimit,
  this.storageLimit,
  this.fee,
  this.counter,
  this.entrypoint,
  this.code,
  this.storage,
  this.parameters,
});