getFeeEstimation method
Implementation
@override
Future<int> getFeeEstimation({
required int walletId,
required int blocks,
}) async {
final result = await methodChannel.invokeMethod<int>('getFeeEstimation', {
'walletId': walletId,
'blocks': blocks,
});
return result!;
}