FastListHeader constructor
FastListHeader({
- Key? key,
- required String categoryText,
- EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 16.0),
- EdgeInsets margin = const EdgeInsets.symmetric(vertical: 16.0),
- Color? categoryColor,
Implementation
FastListHeader({
Key? key,
required this.categoryText,
this.padding = const EdgeInsets.symmetric(horizontal: 16.0),
this.margin = const EdgeInsets.symmetric(vertical: 16.0),
this.categoryColor,
this.captionColor,
this.captionText,
}) : super(key: key);