NeomageCodeBlock constructor

const NeomageCodeBlock({
  1. Key? key,
  2. required String code,
  3. String? language,
  4. bool showLineNumbers = true,
  5. int? maxLines,
})

Implementation

const NeomageCodeBlock({
  super.key,
  required this.code,
  this.language,
  this.showLineNumbers = true,
  this.maxLines,
});