InlineCodeRun constructor

const InlineCodeRun({
  1. required int start,
  2. required int end,
  3. required InlineCodeStyle style,
})

Creates an inline-code run.

Implementation

const InlineCodeRun({
  required this.start,
  required this.end,
  required this.style,
});