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