class ShareDataModel {
  String title;
  String content;
  dynamic image;
  String url;

  ShareDataModel({
    this.title,
    this.content,
    this.image,
    this.url,
  });
}