AdwPreferencesGroup constructor

const AdwPreferencesGroup({
  1. Key? key,
  2. required List<Widget> children,
  3. double borderRadius = 12,
  4. String? title,
  5. TextStyle? titleStyle,
  6. String? description,
  7. TextStyle? descriptionStyle,
  8. EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 5),
})

Implementation

const AdwPreferencesGroup({
  Key? key,
  required this.children,
  this.borderRadius = 12,
  this.title,
  this.titleStyle,
  this.description,
  this.descriptionStyle,
  this.padding = const EdgeInsets.symmetric(horizontal: 5),
}) : super(key: key);