ThemingWidget constructor

ThemingWidget({
  1. Key? key,
  2. String title = "",
  3. Widget? customWidget,
})

Implementation

ThemingWidget({
  Key? key,
  this.title = "",
  this.customWidget,
}) : super(key: key);