FProgressStyles.inherit constructor

FProgressStyles.inherit({
  1. required FColors colors,
  2. required FStyle style,
})

Creates a FProgressStyles that inherits its properties.

Implementation

FProgressStyles.inherit({required FColors colors, required FStyle style})
  : linearProgressStyle = FLinearProgressStyle.inherit(colors: colors, style: style),
    circularIconProgressStyle = IconThemeData(color: colors.mutedForeground, size: 20);