explore unseen view more
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user