copyWith method

FeedMedia copyWith({
  1. String? type,
  2. String? media,
  3. String? thumbImage,
})

Implementation

FeedMedia copyWith({  String? type,
  String? media,
  String? thumbImage,
}) => FeedMedia(  type: type ?? _type,
  media: media ?? _media,
  thumbImage: thumbImage ?? _thumbImage,
);