isGreaterEqual function Null safety
- dynamic value,
- dynamic other
Checks if value is greater than or equal to other.
Implementation
bool isGreaterEqual(dynamic value, dynamic other) =>
isGreater(value, other) || isEqual(value, other);
Checks if value is greater than or equal to other.
bool isGreaterEqual(dynamic value, dynamic other) =>
isGreater(value, other) || isEqual(value, other);