copyWith method
Implementation
GetBackgroundUrl copyWith({
String? name,
BackgroundType? type,
}) =>
GetBackgroundUrl(
name: name ?? this.name,
type: type ?? this.type,
);
GetBackgroundUrl copyWith({
String? name,
BackgroundType? type,
}) =>
GetBackgroundUrl(
name: name ?? this.name,
type: type ?? this.type,
);