bandWidthFee property

Amount get bandWidthFee

Implementation

Amount get bandWidthFee {
  return Amount.from(
    value: bandwidthBalance >= bandWidthConsumed
        ? 0
        : bandWidthConsumed * bandWidthPrice,
    decimals: 6,
  );
}