http_client_deta_api 0.0.1+1 http_client_deta_api: ^0.0.1+1 copied to clipboard
Implementation of the client_deta_api package using the http package.
Example #
// start deta instance using client `HttpClientDetaApi`.
final deta = Deta(projectKey: projectKey, client: HttpClientDetaApi(dio: http.Client()));
// Connect to the `lenguages` DetaBase.
final detabase = deta.base('lenguages');
// Get a spesific element form the key.
final item = await detabase.get('dart-g');