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