toHex function

String toHex(
  1. CurrencyAmount currencyAmount
)

Implementation

String toHex(CurrencyAmount currencyAmount) {
  return '0x${currencyAmount.raw.toRadixString(16)}';
}