copyWith method
Implementation
Backgrounds copyWith({
List<Background>? backgrounds,
dynamic extra,
int? clientId,
}) => Backgrounds(
backgrounds: backgrounds ?? this.backgrounds,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);