copyWith method

EasyDevAppBarThemeData copyWith({
  1. Color? backgroundColor,
  2. double? actionIconSize,
  3. Color? actionIconColor,
  4. Color? titleColor,
  5. Alignment? titleAlignment,
  6. Color? leadingIconColor,
  7. double? leadingIconSize,
})

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,
    );