findById method
Implementation
Future<DocumentDto> findById(String collection, String id) async {
String baseUrl = services.getBaseDatabaseUrl();
String url = '$baseUrl/$collection/$id';
Map<String, dynamic> json = await http.get(url);
return DocumentDto.fromJson(json);
}