SvsImageInfo constructor

SvsImageInfo({
  1. required int width,
  2. required int height,
  3. int? tileWidth,
  4. int? tileHeight,
  5. String? compression,
  6. required Map<String, String> properties,
  7. String? type,
  8. int? displayColor,
  9. double? downsample,
})

Creates an SvsImageInfo instance.

Implementation

SvsImageInfo({
  required this.width,
  required this.height,
  this.tileWidth,
  this.tileHeight,
  this.compression,
  required this.properties,
  this.type,
  this.displayColor,
  this.downsample,
});