copyWith method
Implementation
FFillElement copyWith({
String? color,
double? opacity,
double? stop,
}) {
return FFillElement(
color: color ?? this.color,
opacity: opacity ?? this.opacity,
stop: stop ?? this.stop,
);
}
FFillElement copyWith({
String? color,
double? opacity,
double? stop,
}) {
return FFillElement(
color: color ?? this.color,
opacity: opacity ?? this.opacity,
stop: stop ?? this.stop,
);
}