getTransactionInfo method
Implementation
Future<EVMTransactionInfo> getTransactionInfo({
required String from,
String? to,
String? data,
double? amountInMatic,
}) async {
final res = await polygonRpcClient.getTransactionInfo(
from: from,
to: to,
data: data,
amountInEth: amountInMatic,
);
return res;
}