copyWith method Null safety

PresentationComponentLoaded copyWith(
  1. {PresentationModel? copyThis}
)

Implementation

PresentationComponentLoaded copyWith({PresentationModel? copyThis}) {
  return PresentationComponentLoaded(value: copyThis ?? value);
}