PaddingRight constructor

PaddingRight([
  1. double? padding
])

Adds padding to the right of the child.

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

Implementation

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