padding static method
EdgeInsets
padding(
- BuildContext context, {
- required EdgeInsets mobile,
- EdgeInsets? tablet,
- EdgeInsets? desktop,
- 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,
);
}