isSmallerThan method
Is the screenWidth smaller than the name
?
Defaults to false if the name
cannot be found.
Implementation
bool isSmallerThan(String? name) =>
screenWidth <
breakpointSegments
.firstWhere((element) => element.responsiveBreakpoint.name == name,
orElse: () => const ResponsiveBreakpointSegment(
breakpoint: 0,
segmentType: ResponsiveBreakpointBehavior.TAG,
responsiveBreakpoint: ResponsiveBreakpoint.tag(0, name: '')))
.breakpoint;