PixelBinImage constructor

PixelBinImage({
  1. required String imagePath,
  2. required String cloudName,
  3. String? zone,
  4. bool worker = false,
  5. List<TransformationData>? transformations,
  6. String host = "cdn.pixelbin.io",
  7. String version = "v2",
})

Implementation

PixelBinImage({
  required this.imagePath,
  required this.cloudName,
  this.zone,
  this.worker = false,
  List<TransformationData>? transformations,
  this.host = "cdn.pixelbin.io",
  this.version = "v2",
}) : transformations = transformations ?? [];