OpenMediacenterMobileFlutter/lib/types/video.dart

13 lines
265 B
Dart
Raw Permalink Normal View History

class VideoT {
int id;
String title;
double ratio;
VideoT(this.title, this.id, this.ratio);
factory VideoT.fromJson(dynamic json) {
return VideoT(json['MovieName'] as String, json['MovieId'] as int,
(json['Ratio'] as num).toDouble());
}
}