copyWith method
Implementation
EasyDevAppBarThemeData copyWith({
Color? backgroundColor,
double? actionIconSize,
Color? actionIconColor,
Color? titleColor,
Alignment? titleAlignment,
Color? leadingIconColor,
double? leadingIconSize,
}) =>
EasyDevAppBarThemeData(
backgroundColor: backgroundColor ?? this.backgroundColor,
actionIconSize: actionIconSize ?? this.actionIconSize,
actionIconColor: actionIconColor ?? this.actionIconColor,
titleColor: titleColor ?? this.titleColor,
titleAlignment: titleAlignment ?? this.titleAlignment,
leadingIconColor: leadingIconColor ?? this.leadingIconColor,
leadingIconSize: leadingIconSize ?? this.leadingIconSize,
);