copyWith method

  1. @override
BackgroundFillSolid copyWith({
  1. int? color,
})
override

Implementation

@override
BackgroundFillSolid copyWith({
  int? color,
}) => BackgroundFillSolid(
  color: color ?? this.color,
);