DeclarativeEdgeInsets constructor
Base class for declarative padding.
Implementation
DeclarativeEdgeInsets({
double? left,
double? top,
double? right,
double? bottom,
}) : super.only(
left: left ?? defaultPadding,
top: top ?? defaultPadding,
right: right ?? defaultPadding,
bottom: bottom ?? defaultPadding,
);