String etherToWei(String amount) { final weiAmount = Decimal.parse(amount) * Decimal.parse('1000000000000000000'); return weiAmount.toString(); }