MediaTrackSupportedConstraints constructor
MediaTrackSupportedConstraints({})
Implementation
factory MediaTrackSupportedConstraints(
{bool? width,
bool? height,
bool? aspectRatio,
bool? frameRate,
bool? facingMode,
bool? resizeMode,
bool? sampleRate,
bool? sampleSize,
bool? echoCancellation,
bool? autoGainControl,
bool? noiseSuppression,
bool? latency,
bool? channelCount,
bool? deviceId,
bool? groupId}) =>
MediaTrackSupportedConstraints._(
width: width ?? true,
height: height ?? true,
aspectRatio: aspectRatio ?? true,
frameRate: frameRate ?? true,
facingMode: facingMode ?? true,
resizeMode: resizeMode ?? true,
sampleRate: sampleRate ?? true,
sampleSize: sampleSize ?? true,
echoCancellation: echoCancellation ?? true,
autoGainControl: autoGainControl ?? true,
noiseSuppression: noiseSuppression ?? true,
latency: latency ?? true,
channelCount: channelCount ?? true,
deviceId: deviceId ?? true,
groupId: groupId ?? true);