TransactionRequest constructor

TransactionRequest({
  1. required String type,
  2. required String from,
  3. required String to,
  4. required String data,
  5. required BigNumber gas,
})

Implementation

TransactionRequest({
  required this.type,
  required this.from,
  required this.to,
  required this.data,
  required this.gas,
  // this.value,
});