noSize property

bool get noSize

Implementation

bool get noSize =>
    _width == null ||
    _height == null ||
    (_width ?? 0.0).isNaN ||
    (_height ?? 0.0).isNaN ||
    (_width ?? 0.0) <= 0.0 ||
    (_height ?? 0.0) <= 0.0;