copyWith method
Creates a copy with updated values.
Implementation
EmphasisMeta copyWith({
String? style,
}) {
return EmphasisMeta(
style: style ?? this.style,
);
}
Creates a copy with updated values.
EmphasisMeta copyWith({
String? style,
}) {
return EmphasisMeta(
style: style ?? this.style,
);
}