copyWith method
- NiceGradientType? type,
- double? angle,
- List<
NiceGradientStop> ? stops, - bool? repeating,
Implementation
NiceGradientValue copyWith({
NiceGradientType? type,
double? angle,
List<NiceGradientStop>? stops,
bool? repeating,
}) =>
NiceGradientValue(
type: type ?? this.type,
angle: angle ?? this.angle,
stops: stops ?? this.stops,
repeating: repeating ?? this.repeating,
);