isLg function

bool isLg(
  1. BuildContext context
)

Whether the screen is large (lg).

Implementation

bool isLg(BuildContext context) {
  return breakpoint(context) == BreakPoint.lg;
}