ScaffoldPaddingStorage constructor
ScaffoldPaddingStorage({})
Creates a ScaffoldPaddingStorage.
Parameters:
top(double, required): Top padding.left(double, required): Left padding.right(double, required): Right padding.bottom(double, required): Bottom padding.
Implementation
ScaffoldPaddingStorage({
required this.top,
required this.left,
required this.right,
required this.bottom,
});