PaddingLeft constructor

PaddingLeft([
  1. double? padding
])

Adds padding to the left of the child.

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

Implementation

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