meanAsync method
Implementation
Future<Scalar> meanAsync({Mat? mask}) async => cvRunAsync(
(callback) => mask == null
? ccore.core_Mean_Async(ref, callback)
: ccore.core_MeanWithMask_Async(ref, mask.ref, callback),
scalarCompleter,
);