Calculates what percentage this number is of another number.
Example:
double value = 25.0; double percentage = value.percent(of: 100.0); // 25.0
double percent({required double of}) => (this / of) * 100;