UniformPadding constructor

const UniformPadding({
  1. Key? key,
  2. Set<Edge> edges = Edges.all,
  3. double? amount,
  4. Widget? child,
})

Creates an UniformPadding widget.

Implementation

const UniformPadding({
  super.key,
  this.edges = Edges.all,
  this.amount,
  super.child,
});