save method

Future<bool> save()

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

Implementation

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