isLg property

bool get isLg

Returns true if the width is between 992 (inclusive) and 1200 (exclusive).

Implementation

bool get isLg => width >= 992 && width < 1200;