DetectedProperties.fromJson constructor

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

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?,
  );
}