copyWith method

SimpleTextComponentLoaded copyWith({
  1. SimpleTextModel? copyThis,
})

Implementation

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