Constructs an amount of Ether by a unit and its amount.
factory EtherAmount.fromBigInt(EtherUnit unit, BigInt amount) { final wei = _factors[unit]! * amount; return EtherAmount.inWei(wei); }