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;
Returns true if the width is between 576 (inclusive) and 768 (exclusive).
bool get isSm => width >= 576 && width < 768;