FilTransaction constructor

FilTransaction({
  1. required String to,
  2. required String from,
  3. required String value,
  4. required int method,
  5. required String params,
  6. required int nonce,
  7. required int gasLimit,
  8. required String gasFeeCap,
  9. required String gasPremium,
})

Implementation

FilTransaction({
  required this.to,
  required this.from,
  required this.value,
  required this.method,
  required this.params,
  required this.nonce,
  required this.gasLimit,
  required this.gasFeeCap,
  required this.gasPremium,
});