copyWith method

TutorialComponentLoaded copyWith({
  1. TutorialModel? copyThis,
})

Implementation

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