RendererStyle constructor

const RendererStyle({
  1. BorderRadiusGeometry? borderRadius,
  2. String? label,
  3. TextStyle labelStyle = TextConstants.labelStyle,
  4. Color defaultColor = TextConstants.defaultColor,
  5. Color defaultBackgroundColor = TextConstants.defaultBackgroundColor,
  6. bool autoScroll = true,
  7. Color? linkColor = Colors.blue,
  8. bool? linkUnderline,
  9. String overflowIndicator = "...",
  10. List<RendererTextProperties> textProperties = const [],
  11. TextStyle errorStyle = TextConstants.errorStyle,
  12. bool enableScroll = true,
})

Implementation

const RendererStyle({
  this.borderRadius,
  this.label,
  this.labelStyle = TextConstants.labelStyle,
  this.defaultColor = TextConstants.defaultColor,
  this.defaultBackgroundColor = TextConstants.defaultBackgroundColor,
  this.autoScroll = true,
  this.linkColor = Colors.blue,
  this.linkUnderline,
  this.overflowIndicator = "...",
  this.textProperties = const [],
  this.errorStyle = TextConstants.errorStyle,
  this.enableScroll = true,
});