copyWith method
Implementation
SvgWrapper copyWith({
String? name,
String? content,
}) {
return SvgWrapper(
name: name ?? this.name,
content: content ?? this.content,
);
}
SvgWrapper copyWith({
String? name,
String? content,
}) {
return SvgWrapper(
name: name ?? this.name,
content: content ?? this.content,
);
}