RenderSettings<T> constructor
RenderSettings<T>({ - Set<T> options = const <Never>{},
- Color innerColor = defaultInnerColor,
- Color outerColor = defaultOuterColor,
- double innerSz = defaultInnerSize,
- double outerSz = defaultOuterSize,
- double imgSz = defaultImageSize,
- double textSz = defaultTextSize,
- Color textColor = defaultTextColor,
- LineType lineType = defaultLineType,
- 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,
});