copyWith method

ProfileComponentLoaded copyWith({
  1. ProfileModel? copyThis,
})

Implementation

ProfileComponentLoaded copyWith({ProfileModel? copyThis}) {
  return ProfileComponentLoaded(value: copyThis ?? value);
}