isGreaterThan method

bool isGreaterThan(
  1. num b
)

Checks if GREATER than num b.

Parameters

  • b: The value to compare

Returns

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

Implementation

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