completeSymmAsync function
CompleteSymm copies the lower or the upper half of a square matrix to its another half.
For further details, please see: https://docs.opencv.org/4.x/d2/de8/group__core__array.html#ga6847337c0c55769e115a70e0f011b5ca
Implementation
Future<Mat> completeSymmAsync(InputOutputArray m, {bool lowerToUpper = false}) async => cvRunAsync0(
(callback) => ccore.core_CompleteSymm_Async(m.ref, lowerToUpper, callback),
(c) => c.complete(m),
);