weiToDecimalEther method
Implementation
Decimal weiToDecimalEther(int decimals) {
var parsed = DecimalExt.fromBigInt(getInWei);
if (parsed != null) {
return (parsed / Decimal.fromInt(pow(10, decimals).toInt())).toDecimal();
} else {
return Decimal.zero;
}
}