TiffFaxDecoder constructor

TiffFaxDecoder(
  1. int? fillOrder,
  2. int width,
  3. int height
)

Implementation

TiffFaxDecoder(this.fillOrder, this.width, this.height) {
  prevChangingElems = List<int?>.filled(width, null);
  currChangingElems = List<int?>.filled(width, null);
}