createAsync static method

Future<Stitcher> createAsync({
  1. StitcherMode mode = StitcherMode.PANORAMA,
})

Implementation

static Future<Stitcher> createAsync({
  StitcherMode mode = StitcherMode.PANORAMA,
}) async =>
    cvRunAsync(
      (callback) => cstitching.Stitcher_Create_Async(mode.index, callback),
      (c, p) => c.complete(Stitcher.fromPointer(p.cast<cstitching.Stitcher>())),
    );