Channel constructor

Channel({
  1. required String channelName,
  2. required DataSource dataSource,
  3. CompressionType? compressionType,
  4. String? contentType,
  5. TrainingInputMode? inputMode,
  6. RecordWrapper? recordWrapperType,
  7. ShuffleConfig? shuffleConfig,
})

Implementation

Channel({
  required this.channelName,
  required this.dataSource,
  this.compressionType,
  this.contentType,
  this.inputMode,
  this.recordWrapperType,
  this.shuffleConfig,
});