gt method

bool gt(
  1. num? n
)

Implementation

bool gt(num? n) => this != null && n != null && this! > n;