BottomPaddedRow constructor

const BottomPaddedRow({
  1. Key? key,
  2. List<Widget> children = const [],
  3. double spacing = 10,
})

Implementation

const BottomPaddedRow({
  super.key,
  this.children = const [],
  this.spacing = 10,
});