copyWith method
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,
);
}