TitleSection constructor

TitleSection({
  1. Key? key,
  2. required String title,
  3. TextStyle? titleTextStyle,
  4. required Widget child,
})

Implementation

TitleSection({Key? key, required this.title, this.titleTextStyle,required this.child})
    : super(key: key);