copyWith method

BannerList copyWith({
  1. String? image,
  2. String? imageFull,
})

Implementation

BannerList copyWith({  String? image,
  String? imageFull,
}) => BannerList(  image: image ?? _image,
  imageFull: imageFull ?? _imageFull,
);