OperationModel constructor

OperationModel({
  1. String? destination,
  2. String? amount,
  3. int? counter,
  4. String? fee,
  5. String? source,
  6. String kind = 'transaction',
  7. int? gasLimit = TezosConstants.DefaultTransactionGasLimit,
  8. int storageLimit = TezosConstants.DefaultTransactionStorageLimit,
  9. String? publicKey,
  10. String? delegate,
  11. Map<String, Object?>? script,
  12. String? pkh,
  13. String? secret,
})

Implementation

OperationModel({
  this.destination,
  this.amount,
  this.counter,
  this.fee,
  this.source,
  this.kind = 'transaction',
  this.gasLimit = TezosConstants.DefaultTransactionGasLimit,
  this.storageLimit = TezosConstants.DefaultTransactionStorageLimit,
  this.publicKey,
  this.delegate,
  this.script,
  this.pkh,
  this.secret,
});