copyWith method

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

Implementation

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