LogicSection constructor

LogicSection({
  1. Key? key,
  2. Color? color,
})

Implementation

LogicSection({
  Key? key,
  Color? color,
}) : super(
        key: key,
        sectionData: CreationSectionData(
          name: 'Logic',
          color: color ?? Colors.blue,
        ),
      );