delegate property

Implementation

interop.RequestInitCfPropertiesImageDraw get delegate {
  return interop.RequestInitCfPropertiesImageDraw(url: url)
    ..opacity = opacity
    ..repeat = repeat == CloudflareRequestInitImageDrawRepeat.valueTrue
        ? true
        : repeat?.name
    ..top = top
    ..left = left
    ..bottom = bottom
    ..right = right
    ..width = width
    ..height = height
    ..fit = fit?.value
    ..gravity = gravity?.name
    ..background = background
    ..rotate = rotate;
}