Relational greater than or equal operator.
bool? operator >=(num other) { if (value != null) { return value! >= other; } return null; }