documentWithId method
Gets a Document object with the given id
Implementation
Future<Document> documentWithId(String id) async {
Map<dynamic, dynamic> _docResult = await _methodChannel.invokeMethod(
'getDocumentWithId', <String, dynamic>{'database': name, 'id': id});
return Document(_docResult["doc"], _docResult["id"]);
}