PluginInfoItem constructor

const PluginInfoItem({
  1. Key? key,
  2. String? title,
  3. String? content,
  4. TextStyle? style,
  5. TextStyle? titleStyle,
  6. CrossAxisAlignment? crossAxisAlignment,
  7. int flex = 1,
  8. bool lowTitle = false,
  9. String? titleToolTip,
  10. CrossAxisAlignment? contentCrossAxisAlignment,
  11. bool isExpanded = true,
})

Implementation

const PluginInfoItem(
    {Key? key,
    this.title,
    this.content,
    this.style,
    this.titleStyle,
    this.crossAxisAlignment,
    this.flex = 1,
    this.lowTitle = false,
    this.titleToolTip,
    this.contentCrossAxisAlignment,
    this.isExpanded = true})
    : super(key: key);