FeedMedia constructor

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

Implementation

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