estimateGas method
Implementation
Future<BigInt> estimateGas(TransactionRequest transaction) async {
if (provider == null) {
throw 'missing provider';
}
return await provider!.estimateGas(transaction);
}
Future<BigInt> estimateGas(TransactionRequest transaction) async {
if (provider == null) {
throw 'missing provider';
}
return await provider!.estimateGas(transaction);
}