assembly method

String assembly({
  1. required String url,
  2. required double width,
  3. double height = 0,
  4. ImageCut cut = ImageCut.center,
  5. double radius = 0,
  6. ZoomType zoomType = ZoomType.geometric,
})

Implementation

String assembly(
    {required String url,
    required double width,
    double height = 0,
    ImageCut cut = ImageCut.center,
    double radius = 0,
    ZoomType zoomType = ZoomType.geometric}) {
  return _assembly(url: url, width: width, height: height, cut: cut, radius: radius, zoomType: zoomType);
}