copyWith method
FFill
copyWith({
- List<
FFillElement> ? levels, - FFillType? type,
- Alignment? begin,
- Alignment? end,
- Alignment? center,
- double? radius,
- FBoxFit? boxFit,
- dynamic paletteStyle,
- ID? variableID,
- JsonGetAttribute? jsonGetAttribute,
Implementation
FFill copyWith({
List<FFillElement>? levels,
FFillType? type,
Alignment? begin,
Alignment? end,
Alignment? center,
double? radius,
FBoxFit? boxFit,
dynamic paletteStyle,
ID? variableID,
JsonGetAttribute? jsonGetAttribute,
}) {
return FFill(
levels: levels ?? this.levels,
type: type ?? this.type,
begin: begin ?? this.begin,
end: end ?? this.end,
center: center ?? this.center,
radius: radius ?? this.radius,
boxFit: boxFit ?? this.boxFit,
paletteStyle: paletteStyle,
variableID: variableID,
jsonGetAttribute: jsonGetAttribute,
);
}