copyWith method

Photo copyWith({
  1. Uint8List? thumbnail,
  2. Uint8List? fullSize,
})

Implementation

Photo copyWith({Uint8List? thumbnail, Uint8List? fullSize}) => Photo(
  thumbnail: thumbnail ?? this.thumbnail,
  fullSize: fullSize ?? this.fullSize,
);