EthTxOption constructor
EthTxOption({})
Implementation
factory EthTxOption(
{required bool isSupportEip1559,
required String to,
double? nonce,
String? value,
double? gas,
String? gasPrice,
dynamic hint}) =>
RustLib.instance.api.ethTxOptionNew(
isSupportEip1559: isSupportEip1559,
to: to,
nonce: nonce,
value: value,
gas: gas,
gasPrice: gasPrice,
hint: hint);