isAtLeast method

bool isAtLeast(
  1. double screenWidth,
  2. FSBreakpoint breakpoint
)

Check if screen width is at least a specific breakpoint

Implementation

bool isAtLeast(double screenWidth, FSBreakpoint breakpoint) {
  return screenWidth >= value(breakpoint);
}