SeparatedButtons constructor

const SeparatedButtons({
  1. Key? key,
  2. TextStyle? textStyle,
  3. required List<Widget> children,
})

Implementation

const SeparatedButtons({
  Key? key,
  this.textStyle,
  required this.children,
})  : assert(children.length > 0),
      super(key: key);