lt method

bool lt(
  1. num? n
)

Implementation

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