RenderSettings<T> constructor

RenderSettings<T>({
  1. Set<T> options = const <Never>{},
  2. Color innerColor = defaultInnerColor,
  3. Color outerColor = defaultOuterColor,
  4. double innerSz = defaultInnerSize,
  5. double outerSz = defaultOuterSize,
  6. double imgSz = defaultImageSize,
  7. double textSz = defaultTextSize,
  8. Color textColor = defaultTextColor,
  9. LineType lineType = defaultLineType,
  10. ImagePosition imagePosition = defaultImagePosition,
})

Implementation

RenderSettings({
  this.options = const <Never>{},
  this.innerColor = defaultInnerColor,
  this.outerColor = defaultOuterColor,
  this.innerSz = defaultInnerSize,
  this.outerSz = defaultOuterSize,
  this.imgSz = defaultImageSize,
  this.textSz = defaultTextSize,
  this.textColor = defaultTextColor,
  this.lineType = defaultLineType,
  this.imagePosition = defaultImagePosition,
});