StringProperty constructor
- String name,
 - String? value, {
 - String? description,
 - String? tooltip,
 - bool showName = true,
 - Object? defaultValue = kNoDefaultValue,
 - bool quoted = true,
 - String? ifEmpty,
 - DiagnosticsTreeStyle style = DiagnosticsTreeStyle.singleLine,
 - DiagnosticLevel level = DiagnosticLevel.info,
 
Create a diagnostics property for strings.
Implementation
StringProperty(
  String super.name,
  super.value, {
  super.description,
  super.tooltip,
  super.showName,
  super.defaultValue,
  this.quoted = true,
  super.ifEmpty,
  super.style,
  super.level,
});