ValueLinearConfiguration.fromConfig constructor
Implementation
factory ValueLinearConfiguration.fromConfig(double? strokeWidth, Color? backgroundColor) {
return ValueLinearConfiguration()
..backgroundColor = backgroundColor ?? ConfigurationData.valueBackgroundColor
..strokeWidth = ConfigurationData.valueStrokeWidth;
}