copyWith method
InlineSpan
copyWith({
- TextStyle? style,
- double? baseline,
- AnnotationBuilder? annotation,
override
Implementation
@override
InlineSpan copyWith({
TextStyle? style,
double? baseline,
AnnotationBuilder? annotation,
}) =>
WidgetSpan(
child: child,
style: style ?? this.style,
baseline: baseline ?? this.baseline,
annotation: annotation ?? this.annotation,
);