copyWith method
Implementation
@override
InternalLinkTypeBackground copyWith({
String? backgroundName,
dynamic extra,
int? clientId,
}) =>
InternalLinkTypeBackground(
backgroundName: backgroundName ?? this.backgroundName,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);