copyWith method

FBorder copyWith({
  1. FFill? fill,
  2. FMargins? width,
  3. FBorderStyle? style,
})

Implementation

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