CodeBlockStyle constructor

CodeBlockStyle({
  1. required Color backgroundColor,
  2. required Color foregroundColor,
})

Implementation

CodeBlockStyle({
  required this.backgroundColor,
  required this.foregroundColor,
});