compose method

Future<Image> compose()

Compose all the images into a single composition.

Implementation

Future<Image> compose() {
  final result = _composeCore();

  return result.picture.toImageSafe(
    result.width,
    result.height,
  );
}