copyWith method

  1. @override
RichTextAnchor copyWith({
  1. String? name,
})
override

Implementation

@override
RichTextAnchor copyWith({
  String? name,
}) => RichTextAnchor(
  name: name ?? this.name,
);