copyWith method

AlbumComponentLoaded copyWith({
  1. AlbumModel? copyThis,
})

Implementation

AlbumComponentLoaded copyWith({AlbumModel? copyThis}) {
  return AlbumComponentLoaded(value: copyThis ?? value);
}