MarkdownHelpButton constructor

const MarkdownHelpButton({
  1. required String assetPath,
  2. required bool isDark,
  3. String label = '❓',
  4. Widget? labelIcon,
  5. String? package,
  6. Widget? titleIcon,
  7. Map<String, String>? substitutions,
  8. Key? key,
})

Create a MarkdownHelpButton.

Implementation

const MarkdownHelpButton({
  required this.assetPath,
  required this.isDark,
  this.label = '❓',
  this.labelIcon,
  this.package,
  this.titleIcon,
  this.substitutions,
  super.key,
});