ModCodeExample constructor

const ModCodeExample({
  1. Key? key,
  2. required String code,
  3. String title = 'Exemplo de Código',
  4. bool initiallyExpanded = false,
  5. Color? codeBackgroundColor,
  6. TextStyle? codeStyle,
  7. double borderRadius = 8.0,
})

Implementation

const ModCodeExample({
  super.key,
  required this.code,
  this.title = 'Exemplo de Código',
  this.initiallyExpanded = false,
  this.codeBackgroundColor,
  this.codeStyle,
  this.borderRadius = 8.0,
});