CreateGroupCommunity constructor

const CreateGroupCommunity({
  1. required HeaderView headerView,
  2. required String heading,
  3. required String description,
  4. TextStyle? headingStyle,
  5. TextStyle? descriptionStyle,
  6. Color? optionIconColor,
  7. Color? selectedColor,
  8. Color? disabledColor,
  9. Color? addIconColor,
  10. TextStyle? addIconTextStyle,
  11. TextStyle? optionTitleStyle,
  12. TextStyle? optionDescriptionStyle,
  13. Color? bottomButtonColor,
  14. Color? bottomButtonBorderColor,
  15. TextStyle? bottomButtonStyle,
  16. Key? key,
})

Implementation

const CreateGroupCommunity(
    {required this.headerView,
    required this.heading,
    required this.description,
    this.headingStyle,
    this.descriptionStyle,
    this.optionIconColor,
    this.selectedColor,
    this.disabledColor,
    this.addIconColor,
    this.addIconTextStyle,
    this.optionTitleStyle,
    this.optionDescriptionStyle,
    this.bottomButtonColor,
    this.bottomButtonBorderColor,
    this.bottomButtonStyle,
    final Key? key})
    : super(key: key);