ImageFilesystemBroker constructor

ImageFilesystemBroker(
  1. String path, {
  2. int? numChannels,
  3. num? alpha,
  4. bool createPathIfNotExists = false,
  5. bool exceptionWhenFileNotExists = false,
})

See readAsImage() notes for numChannels and alpha.

Implementation

ImageFilesystemBroker(
  super.path, {
  this.numChannels,
  this.alpha,
  super.createPathIfNotExists = false,
  super.exceptionWhenFileNotExists = false,
});