padding static method

EdgeInsets padding(
  1. BuildContext context, {
  2. required EdgeInsets mobile,
  3. EdgeInsets? tablet,
  4. EdgeInsets? desktop,
  5. EdgeInsets? desktopLarge,
})

Implementation

static EdgeInsets padding(
  BuildContext context, {
  required EdgeInsets mobile,
  EdgeInsets? tablet,
  EdgeInsets? desktop,
  EdgeInsets? desktopLarge,
}) {
  return value<EdgeInsets>(
    context,
    mobile: mobile,
    tablet: tablet,
    desktop: desktop,
    desktopLarge: desktopLarge,
  );
}