isLessThan method

bool isLessThan(
  1. int b
)

Checks if LOWER than int b.

Implementation

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