cloneAsync method

Future<Mat> cloneAsync()

Implementation

Future<Mat> cloneAsync() async {
  final dst = Mat.empty();
  return cvRunAsync0(
    (callback) => ccore.cv_Mat_clone(ref, dst.ptr, callback),
    (c) => c.complete(dst),
  );
}