save method

Future<bool> save()

Save document

example:

bool result = await _controller.save();

Return value: true if the save is successful, false if the save fails.

Implementation

Future<bool> save() async {
  return await _channel.invokeMethod('save');
}