class SegmentItemModel { String? cid; String category; String? actionType; List segment; String uuid; num? videoDuration; SegmentItemModel({ this.cid, required this.category, this.actionType, required this.segment, required this.uuid, this.videoDuration, }); factory SegmentItemModel.fromJson(Map json) => SegmentItemModel( cid: json["cid"], category: json["category"], actionType: json["actionType"], segment: (json["segment"] as List) .map((e) => ((e as num) * 1000).round()) .toList(), uuid: json["UUID"], videoDuration: json["videoDuration"] == null ? null : (json["videoDuration"] as num) * 1000, ); }