copyWith method

RemoveBackground copyWith({
  1. int? backgroundId,
})

Implementation

RemoveBackground copyWith({
  int? backgroundId,
}) =>
    RemoveBackground(
      backgroundId: backgroundId ?? this.backgroundId,
    );