copyWith method

  1. @override
ThemeExtension<ModuleStatusTheme> copyWith(
  1. {Color? pendingColor,
  2. Color? uploadedColor,
  3. Color? lateColor,
  4. Color? doneColor}
)
override

Creates a copy of this theme extension with the given fields replaced by the non-null parameter values.

Implementation

@override
ThemeExtension<ModuleStatusTheme> copyWith({
  Color? pendingColor,
  Color? uploadedColor,
  Color? lateColor,
  Color? doneColor,
}) {
  return ModuleStatusTheme(
    pendingColor: pendingColor ?? this.pendingColor,
    uploadedColor: uploadedColor ?? this.uploadedColor,
    lateColor: lateColor ?? this.lateColor,
    doneColor: doneColor ?? this.doneColor,
  );
}