InlineCodeStyle constructor

InlineCodeStyle({
  1. required TextStyle style,
  2. TextStyle? header1,
  3. TextStyle? header2,
  4. TextStyle? header3,
  5. Color? backgroundColor,
  6. Radius? radius,
})

Implementation

InlineCodeStyle({
  required this.style,
  this.header1,
  this.header2,
  this.header3,
  this.backgroundColor,
  this.radius,
});