paddingBottom method

Padding paddingBottom({
  1. Key? key,
  2. required double value,
})

Implementation

Padding paddingBottom({Key? key, required double value}) {
  return Padding(
    padding: EdgeInsets.only(bottom: value),
    key: key,
    child: this,
  );
}