ParseContext constructor

ParseContext({
  1. TextStyle? textStyle,
  2. TextStyle? linkStyle,
  3. bool condenseWhitespace = true,
  4. int listDepth = 0,
})

Implementation

ParseContext({
  TextStyle? textStyle,
  TextStyle? linkStyle,
  this.condenseWhitespace = true,
  this.listDepth = 0,
})  : this.textStyle = textStyle ?? TextStyle(),
      this.linkStyle = linkStyle ?? TextStyle();