copyWith method
Implementation
MiniPlayerThemeData copyWith({
Color? iconColor,
Color? backgroundColor,
Color? thumbnailBorderColor,
Color? topBorderColor,
TextStyle? titleStyle,
TextStyle? secondaryTitleStyle,
}) {
return MiniPlayerThemeData(
iconColor: iconColor ?? this.iconColor,
backgroundColor: backgroundColor ?? this.backgroundColor,
thumbnailBorderColor: thumbnailBorderColor ?? this.thumbnailBorderColor,
topBorderColor: topBorderColor ?? this.topBorderColor,
titleStyle: titleStyle ?? this.titleStyle,
secondaryTitleStyle: secondaryTitleStyle ?? this.secondaryTitleStyle,
);
}