toM2tsBufferModel method

M2tsBufferModel toM2tsBufferModel()

Implementation

M2tsBufferModel toM2tsBufferModel() {
  switch (this) {
    case 'MULTIPLEX':
      return M2tsBufferModel.multiplex;
    case 'NONE':
      return M2tsBufferModel.none;
  }
  throw Exception('$this is not known in enum M2tsBufferModel');
}