copyWith method
Implementation
CupertinoVisualStyle copyWith({
bool? appBarHasBorder,
Color? appBarColor,
Color? cardColor,
EdgeInsets? inputPadding,
TextStyle? appBarTextStyle,
CupertinoTabBarData? tabBarData,
List<BoxShadow>? cardShadow,
}) {
return new CupertinoVisualStyle._of(
appBarColor ?? this.appBarColor,
cardShadow ?? this.cardShadow,
tabBarData ?? this.tabBarData,
cardColor ?? this.cardColor,
appBarTextStyle ?? this.appBarTextStyle,
inputPadding ?? this.inputPadding,
appBarHasBorder ?? this.appBarHasBorder,
);
}