Post constructor

Post({
  1. Dimensions? dimensions,
  2. String? displayUrl,
  3. String? caption,
  4. bool? hasNestedImages,
  5. bool? isVideo,
  6. int? likes,
  7. int? comments,
  8. List<Img>? images,
})

Implementation

Post({
  this.dimensions,
  this.displayUrl,
  this.caption,
  this.hasNestedImages,
  this.isVideo,
  this.likes,
  this.comments,
  this.images,
});