createAsync static method
Implementation
static Future<AlignMTB> createAsync({
int maxBits = 6,
int excludeRange = 4,
bool cut = true,
}) async {
return cvRunAsync(
(callback) => cffi.AlignMTB_CreateWithParams_Async(
maxBits,
excludeRange,
cut,
callback,
),
(c, p) => c.complete(AlignMTB.fromPointer(p.cast<cvg.AlignMTB>())),
);
}