copyWith method

  1. @override
InternalLinkTypeTheme copyWith({
  1. String? themeName,
  2. dynamic extra,
  3. int? clientId,
})
override

Implementation

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