ArucoDictionary.empty constructor
      
      ArucoDictionary.empty()
     
    
    
Implementation
factory ArucoDictionary.empty() {
  final p = calloc<cvg.ArucoDictionary>();
  cvRun(() => ccontrib.cv_aruco_Dictionary_create(p));
  return ArucoDictionary._(p);
}