check method

int? check(
  1. int? defaultValue
)

Implementation

int? check(int? defaultValue) =>
    (this == _emptyIntValue) ? defaultValue : this;