Applies a tax percentage to this number (adds percentage).
Example:
double price = 100.0; double result = price.tax(10); // 110.0 (100 + 10%)
double tax(double percent) => this * (1 + percent / 100);