isGreaterEqual function

bool isGreaterEqual(
  1. dynamic value,
  2. 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);