copyWith method
Implementation
FBorder copyWith({
FFill? fill,
FMargins? width,
FBorderStyle? style,
}) {
return FBorder(
fill: fill ?? this.fill,
width: width ?? this.width,
style: style ?? this.style,
);
}
FBorder copyWith({
FFill? fill,
FMargins? width,
FBorderStyle? style,
}) {
return FBorder(
fill: fill ?? this.fill,
width: width ?? this.width,
style: style ?? this.style,
);
}