gte method

bool gte(
  1. num? n
)

Implementation

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