image method
Implementation
PixelBinImage image({
required String imagePath,
required String cloud,
String? zone,
bool worker = false,
List<TransformationData> transformations = const [],
String host = "cdn.pixelbin.io",
String version = "v2",
}) {
return PixelBinImage(
imagePath: imagePath,
cloudName: cloud,
zone: zone,
worker: worker,
transformations: transformations,
host: host,
version: version,
);
}