copyWith method
SubtitleStyleConfig
copyWith({
- TextStyle? textStyle,
- EdgeInsets? padding,
- EdgeInsets? margin,
- BoxDecoration? decoration,
- double? maxWidth,
- int? maxLines,
- TextOverflow? overflow,
Implementation
SubtitleStyleConfig copyWith({
TextStyle? textStyle,
EdgeInsets? padding,
EdgeInsets? margin,
BoxDecoration? decoration,
double? maxWidth,
int? maxLines,
TextOverflow? overflow,
}) {
return SubtitleStyleConfig(
textStyle: textStyle ?? this.textStyle,
padding: padding ?? this.padding,
margin: margin ?? this.margin,
decoration: decoration ?? this.decoration,
maxWidth: maxWidth ?? this.maxWidth,
maxLines: maxLines ?? this.maxLines,
overflow: overflow ?? this.overflow,
);
}