isMd property
bool
get
isMd
Returns true if the width is between 768 (inclusive) and 992 (exclusive).
Implementation
bool get isMd => width >= 768 && width < 992;
Returns true if the width is between 768 (inclusive) and 992 (exclusive).
bool get isMd => width >= 768 && width < 992;