verifyDigitalSignatureStatus method
Verify the status of the digital signature in the document and display the verification result on the screen. If the document contains a digital signature, a status view will be displayed at the top of the document indicating the verification result. If the document does not contain a digital signature, no status view will be displayed. Example:
await controller.verifyDigitalSignatureStatus();
Implementation
Future<void> verifyDigitalSignatureStatus() async {
await _channel.invokeMethod('verify_digital_signature_status');
}