copyWith method

ImageListState copyWith({
  1. required List<Images> images,
})

Implementation

ImageListState copyWith({
  required List<Images> images,
}) {
  return ImageListState(
    images: images,
  );
}