VideoDetail.fromJson constructor

VideoDetail.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory VideoDetail.fromJson(Map<String, dynamic> json) {
  return VideoDetail(
    heightInPx: json['heightInPx'] as int?,
    widthInPx: json['widthInPx'] as int?,
  );
}