padBottom property
EdgeInsets
get
padBottom
Padding on the bottom.
Example:
Container(
padding: 16.padBottom, // Adds padding of 16px from Bottom.
child: Text("Hello Flutter"),
),
Implementation
EdgeInsets get padBottom => EdgeInsets.only(bottom: toDouble());