Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-11-20 11:55:27 +08:00
parent e7cda7b9fa
commit aad980ce23
4 changed files with 15 additions and 10 deletions

View File

@@ -7,7 +7,7 @@ class SegmentItemModel {
List<int> segment;
String uuid;
num? videoDuration;
int votes;
int? votes;
SegmentItemModel({
this.cid,
@@ -16,7 +16,7 @@ class SegmentItemModel {
required this.segment,
required this.uuid,
this.videoDuration,
this.votes = 0,
this.votes,
});
factory SegmentItemModel.fromJson(Map<String, dynamic> json) =>