copyWith method

AppComponentLoaded copyWith({
  1. AppModel? copyThis,
})

Implementation

AppComponentLoaded copyWith({AppModel? copyThis}) {
  return AppComponentLoaded(value: copyThis ?? value);
}