saveCurrentInk method
Save the currently drawing ink annotation Example:
await controller.saveCurrentInk();
Implementation
Future<void> saveCurrentInk() async {
return await _channel.invokeMethod('save_current_ink');
}
Save the currently drawing ink annotation Example:
await controller.saveCurrentInk();
Future<void> saveCurrentInk() async {
return await _channel.invokeMethod('save_current_ink');
}