isSm property

bool get isSm

Returns true if the width is between 576 (inclusive) and 768 (exclusive).

Implementation

bool get isSm => width >= 576 && width < 768;