into

fun RequestCreator.into(target: ImageView, callback: CallbackBuilder.() -> Unit)

Completes the request into an ImageView while listening to its callback with Kotlin DSL.

See also

com.squareup.picasso.RequestCreator
fun RequestCreator.into(remoteViews: RemoteViews, @IdRes() viewId: Int, notificationId: Int, notification: Notification, notificationTag: String?, callback: CallbackBuilder.() -> Unit)

Completes the request into a Notification while listening to its callback with Kotlin DSL.

See also

com.squareup.picasso.RequestCreator
fun RequestCreator.into(remoteViews: RemoteViews, @IdRes() viewId: Int, appWidgetIds: IntArray, callback: CallbackBuilder.() -> Unit)

Completes the request into a RemoteViews while listening to its callback with Kotlin DSL.

See also

com.squareup.picasso.RequestCreator
fun RequestCreator.into(builder: TargetBuilder.() -> Unit): Target

Completes the request into a Target with Kotlin DSL, returning the Target created.

See also

com.squareup.picasso.RequestCreator