copyWith method

Backgrounds copyWith({
  1. List<Background>? backgrounds,
  2. dynamic extra,
  3. int? clientId,
})

Implementation

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