copyWith method

EmphasisMeta copyWith({
  1. String? style,
})

Creates a copy with updated values.

Implementation

EmphasisMeta copyWith({
  String? style,
}) {
  return EmphasisMeta(
    style: style ?? this.style,
  );
}