PaddingBottom constructor

PaddingBottom([
  1. double? padding
])

Adds padding to the bottom of the child.

If padding is not provided, it defaults to DeclarativeEdgeInsets.defaultPadding.

Implementation

PaddingBottom([double? padding]) : super(bottom: padding, left: 0, top: 0, right: 0);