# leancloud-rest-api-dart **Repository Path**: ywzhaiqi/leancloud-rest-api-dart ## Basic Information - **Project Name**: leancloud-rest-api-dart - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-12-20 - **Last Updated**: 2024-02-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # LeanCloud Rest API 使用 [leanCloud rest api](https://docs.leancloud.cn/sdk/storage/guide/rest/) 搭建的简易库。 ## 使用 ```dart var dbConfig = LraDbConfig(appId: '', appKey: '', serverUrl: ''); var bookApi = LraRestApi( dbConfig, BookModal(), ); var query = LraQuery(where: { 'title': 'title', }); var books = await bookApi.find(query); ``` 更多见 [example](example/main.dart)