PaddingAll constructor
- double? padding
Adds padding to all sides of the child.
If padding
is not provided, it defaults to DeclarativeEdgeInsets.defaultPadding.
Implementation
PaddingAll([double? padding]) : super(left: padding, top: padding, right: padding, bottom: padding);