InlineCodeStyle constructor

const InlineCodeStyle({
  1. String? fontFamily,
  2. String? fontFamilyPackage,
  3. List<String>? fontFamilyFallback,
  4. double? fontSizeFactor,
  5. FontWeight? fontWeight,
  6. Color? color,
  7. Color? backgroundColor,
  8. Color? borderColor,
  9. double? borderWidth,
  10. Radius? borderRadius,
  11. EdgeInsets? padding,
  12. BoxHeightStyle? boxHeightStyle,
})

Creates an inline code style. Null fields keep the resolved default.

Implementation

const InlineCodeStyle({
  this.fontFamily,
  this.fontFamilyPackage,
  this.fontFamilyFallback,
  this.fontSizeFactor,
  this.fontWeight,
  this.color,
  this.backgroundColor,
  this.borderColor,
  this.borderWidth,
  this.borderRadius,
  this.padding,
  this.boxHeightStyle,
});