noSize property

bool get noSize

Implementation

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