DefaultCircleConfiguration.fromConfig constructor

DefaultCircleConfiguration.fromConfig(
  1. double? strokeWidth,
  2. Color? backgroundColor
)

Implementation

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