fixed 1.0.0-beta4 fixed: ^1.0.0-beta4 copied to clipboard
Fixed scale decimal numbers. Have fun with maths at home with friends. Fixed.parse(\"1.234\", scale: 2).formatIntl(\"en-AUS\") == 1.23
import 'package:fixed/fixed.dart';
void main() {
var fixed = Fixed.fromNum(1, scale: 2);
print(fixed.toString());
print(fixed.format('#.#'));
print(fixed.format('#.000'));
var add = fixed + Fixed.fromNum(1);
print(add);
}