rawFormalHint property
String?
get
rawFormalHint
Android only. String representation of a formatHint.
Implementation
String? get rawFormalHint {
switch (formatHint) {
case VideoFormat.ss:
return 'ss';
case VideoFormat.hls:
return 'hls';
case VideoFormat.dash:
return 'dash';
case VideoFormat.other:
return 'other';
default:
return null;
}
}