formatMaxFeePerGas method

String formatMaxFeePerGas({
  1. int precision = 2,
})

Format max fee per gas in Gwei with appropriate precision

Implementation

String formatMaxFeePerGas({int precision = 2}) {
  return FeeInfoFormatting._formatNumber(maxFeePerGasInGwei, precision: precision);
}