VideoFileDetailsVideoStream.fromJson constructor

VideoFileDetailsVideoStream.fromJson(
  1. Map json_
)

Implementation

VideoFileDetailsVideoStream.fromJson(core.Map json_)
    : this(
        aspectRatio: (json_['aspectRatio'] as core.num?)?.toDouble(),
        bitrateBps: json_['bitrateBps'] as core.String?,
        codec: json_['codec'] as core.String?,
        frameRateFps: (json_['frameRateFps'] as core.num?)?.toDouble(),
        heightPixels: json_['heightPixels'] as core.int?,
        rotation: json_['rotation'] as core.String?,
        vendor: json_['vendor'] as core.String?,
        widthPixels: json_['widthPixels'] as core.int?,
      );