DetectedProperties.fromJson constructor
Implementation
factory DetectedProperties.fromJson(Map<String, dynamic> json) {
return DetectedProperties(
durationMillis: json['DurationMillis'] as int?,
fileSize: json['FileSize'] as int?,
frameRate: json['FrameRate'] as String?,
height: json['Height'] as int?,
width: json['Width'] as int?,
);
}