HMSVideoSetting.fromMap constructor

HMSVideoSetting.fromMap(
  1. Map map
)

Implementation

factory HMSVideoSetting.fromMap(Map map) {
  return HMSVideoSetting(
      bitRate: map['bit_rate'] ?? 0,
      codec: HMSVideoCodecValues.getHMSCodecFromName(map['codec'] ?? ''),
      frameRate: map['frame_rate'],
      width: map['width'],
      height: map['height']);
}