FollowSection constructor

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

Implementation

FollowSection({
  Key? key,
  Color? color,
}) : super(
        key: key,
        sectionData: CreationSectionData(
          name: 'Follow',
          color: color ??
              const Color(
                0xFF4CAF50,
              ),
        ),
      );