isWeb function

bool isWeb(
  1. dynamic context
)

Implementation

bool isWeb(context){
  bool fullWidth = isFullWidth(context);
  bool portrait = isPortrait(context);
  return (kIsWeb && fullWidth) ? true : false;
}