isLessThanOrEqual method

bool isLessThanOrEqual(
  1. Object other
)

Implementation

@pragma("vm:prefer-inline")
bool isLessThanOrEqual(Object other) => isLessThan(other) || isEqual(other);