RecorderParams constructor

RecorderParams({
  1. int? channelCount = 1,
  2. String? channelFilter = '0,-1',
})

Implementation

RecorderParams({
  this.channelCount = 1,
  this.channelFilter = '0,-1',
});