estimateTransferGas method
Implementation
Future<int> estimateTransferGas(
{required String token,
required double amount,
required String to,
required String from}) async {
return service.estimateTransferGas(
token: token, amount: amount, to: to, from: from);
}