AdwActionRow constructor

const AdwActionRow({
  1. Key? key,
  2. Widget? start,
  3. Widget? end,
  4. required String title,
  5. VoidCallback? onActivated,
  6. String? subtitle,
  7. double horizontalTitleGap = 8,
  8. bool autofocus = false,
  9. bool enabled = true,
  10. EdgeInsets? contentPadding,
})

Implementation

const AdwActionRow({
  Key? key,
  this.start,
  this.end,
  required this.title,
  this.onActivated,
  this.subtitle,
  this.horizontalTitleGap = 8,
  this.autofocus = false,
  this.enabled = true,
  this.contentPadding,
}) : super(key: key);