Returns whether the value of this Number is greater than or equal to the value of obj (a Number or num).
@override bool operator >=(dynamic obj) => this == obj || this > obj;