eq method

bool eq(
  1. num? n
)

Implementation

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