getFeeEstimation method

  1. @override
Future<int> getFeeEstimation({
  1. required int walletId,
  2. required int blocks,
})
override

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!;
}