composeSync method

Image composeSync()

Compose all the images into a single composition.

A sync version of compose function. Read Picture.toImageSync for detailed description of possible benefits in performance

Implementation

Image composeSync() {
  final result = _composeCore();
  return result.picture.toImageSync(result.width, result.height);
}