isXl property
bool
get
isXl
Returns true if the width is between 1200 (inclusive) and 1400 (exclusive).
Implementation
bool get isXl => width >= 1200 && width < 1400;
Returns true if the width is between 1200 (inclusive) and 1400 (exclusive).
bool get isXl => width >= 1200 && width < 1400;