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