isGreaterThan method

bool isGreaterThan(
  1. int b
)

Checks if GREATER than int b.

Implementation

bool isGreaterThan(int b) => this > b;