copyWith method
Creates a copy with updated values.
Implementation
CalloutMeta copyWith({
String? type,
String? content,
String? position,
}) {
return CalloutMeta(
type: type ?? this.type,
content: content ?? this.content,
position: position ?? this.position,
);
}