copyWith method Null safety

TutorialComponentLoaded copyWith(
  1. {TutorialModel? copyThis}
)

Implementation

TutorialComponentLoaded copyWith({TutorialModel? copyThis}) {
  return TutorialComponentLoaded(value: copyThis ?? value);
}