formatDoubleFromAmount method
Implementation
double formatDoubleFromAmount(scale) {
double correctAmount = this / (pow(10, scale));
return correctAmount;
}
double formatDoubleFromAmount(scale) {
double correctAmount = this / (pow(10, scale));
return correctAmount;
}