isLessThan method

bool isLessThan(
  1. num b
)

Checks if LOWER than num b.

Parameters

  • b: The value to compare

Returns

  • true if this value is less than the other value
  • false otherwise

Implementation

bool isLessThan(num b) => this < b;