mdUp method

Widget mdUp(
  1. BuildContext context
)

Shows the widget on medium screens and up.

Implementation

Widget mdUp(BuildContext context) =>
    context.mdUp ? this : const SizedBox.shrink();