copyWith method
FdcGridStatusBarStyle
copyWith({
- Color? backgroundColor,
- TextStyle? textStyle,
- double? height,
- EdgeInsetsGeometry? padding,
Creates a copy with selected values replaced.
Implementation
FdcGridStatusBarStyle copyWith({
Color? backgroundColor,
TextStyle? textStyle,
double? height,
EdgeInsetsGeometry? padding,
}) {
return FdcGridStatusBarStyle(
backgroundColor: backgroundColor ?? this.backgroundColor,
textStyle: textStyle ?? this.textStyle,
height: height ?? this.height,
padding: padding ?? this.padding,
);
}