exitFormCreationMode method
Exit form creation mode, equivalent to setting the form creation type to CPDFFormType.unknown This method is only available in CPDFViewMode.forms mode. Example:
await controller.exitFormCreationMode();
Implementation
Future<void> exitFormCreationMode() async {
await setFormCreationMode(CPDFFormType.unknown);
}