lte method

bool lte(
  1. num? n
)

Implementation

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