Builder

fun Builder(imageId: String, image: Image)

Constructor for the ImageExtensionImpl.Builder.

Parameters

imageId

the id the the image extension

image

the pixel data of the image.


fun Builder(imageId: String, bitmap: Bitmap)

Constructor for the ImageExtensionImpl.Builder.

Parameters

imageId

the id the the image extension

bitmap

the bitmap data of the image.


fun Builder(imageId: String)

Deprecated

Constructing `ImageExtensionImpl.Builder` without image or bitmap is deprecated, as the image or bitmap is a required field. Please switch to `Builder(imageId: String, image: Image)` or `Builder(imageId: String, bitmap: Bitmap)` instead.

Replace with

ImageExtensionImpl.Builder(imageId, image)

Constructor for the ImageExtensionImpl.Builder.

Parameters

imageId

the Id of the image extension.