explore unseen view more

This commit is contained in:
Rajshinde046
2024-05-08 18:48:45 +05:30
parent a2796be19c
commit a8c377787d
7 changed files with 815 additions and 401 deletions

View File

@@ -393,6 +393,7 @@ class ContentByteVideo {
String? image;
String? isActive;
String? createdAt;
String? link;
ContentByteVideo(
{this.id,
@@ -404,7 +405,8 @@ class ContentByteVideo {
this.categoryId,
this.image,
this.isActive,
this.createdAt});
this.createdAt,
this.link});
ContentByteVideo.fromJson(Map<String, dynamic> json) {
id = json['id'];
@@ -417,6 +419,7 @@ class ContentByteVideo {
image = json['image'];
isActive = json['is_active'];
createdAt = json['created_at'];
link = json['link'];
}
Map<String, dynamic> toJson() {
@@ -431,6 +434,7 @@ class ContentByteVideo {
data['image'] = this.image;
data['is_active'] = this.isActive;
data['created_at'] = this.createdAt;
data['link'] = this.link;
return data;
}
}