PaddedDivider constructor

const PaddedDivider({
  1. Key? key,
  2. EdgeInsets padding = const EdgeInsets.only(bottom: 10.0),
})

Implementation

const PaddedDivider({
  super.key,
  this.padding = const EdgeInsets.only(bottom: 10.0),
});