SafaehOptionList constructor

const SafaehOptionList({
  1. Key? key,
  2. required List<Widget> children,
  3. EdgeInsetsGeometry padding = const EdgeInsets.fromLTRB(16, 8, 16, 8),
  4. double spacing = 8,
})

Implementation

const SafaehOptionList({
  super.key,
  required this.children,
  this.padding = const EdgeInsets.fromLTRB(16, 8, 16, 8),
  this.spacing = 8,
});