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