FunctionsSection constructor

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

Implementation

FunctionsSection({
  Key? key,
  Color? color,
}) : super(
          key: key,
          sectionData: CreationSectionData(
            name: 'Functions',
            color: color ??
                const Color(
                  0xFFE65100,
                ),
          ));