CrButtonGroup constructor

CrButtonGroup({
  1. Key? key,
  2. List<CrButton> children = const [],
  3. Axis axis = Axis.horizontal,
})

Implementation

CrButtonGroup(
    {Key? key, this.children = const [], this.axis = Axis.horizontal})
    : assert(children.length >= 2),
      super(key: key);