md static method

double md(
  1. BuildContext context
)

Medium spacing (16/20/24 for phone/tablet/desktop)

Implementation

static double md(BuildContext context) => _getValue(
  context,
  phone: _mdPhone,
  tablet: _mdTablet,
  desktop: _mdDesktop,
);