toMxfProfile method

MxfProfile toMxfProfile()

Implementation

MxfProfile toMxfProfile() {
  switch (this) {
    case 'D_10':
      return MxfProfile.d_10;
    case 'XDCAM':
      return MxfProfile.xdcam;
    case 'OP1A':
      return MxfProfile.op1a;
  }
  throw Exception('$this is not known in enum MxfProfile');
}