toProresInterlaceMode method
Implementation
ProresInterlaceMode toProresInterlaceMode() {
switch (this) {
case 'PROGRESSIVE':
return ProresInterlaceMode.progressive;
case 'TOP_FIELD':
return ProresInterlaceMode.topField;
case 'BOTTOM_FIELD':
return ProresInterlaceMode.bottomField;
case 'FOLLOW_TOP_FIELD':
return ProresInterlaceMode.followTopField;
case 'FOLLOW_BOTTOM_FIELD':
return ProresInterlaceMode.followBottomField;
}
throw Exception('$this is not known in enum ProresInterlaceMode');
}