UBlogJson constructor

UBlogJson({
  1. String? metaTitle,
  2. String? metaDescription,
  3. String? source,
  4. String? detail1,
  5. String? detail2,
  6. String? actionType,
  7. String? actionTitle,
  8. String? actionUri,
  9. List<String>? relatedBlogs,
})

Implementation

UBlogJson({
  this.metaTitle,
  this.metaDescription,
  this.source,
  this.detail1,
  this.detail2,
  this.actionType,
  this.actionTitle,
  this.actionUri,
  this.relatedBlogs,
});