copyWith method Null safety

SimpleTextComponentLoaded copyWith(
  1. {SimpleTextModel? copyThis}
)

Implementation

SimpleTextComponentLoaded copyWith({SimpleTextModel? copyThis}) {
  return SimpleTextComponentLoaded(value: copyThis ?? value);
}