dio_client_deta_api 0.0.1 dio_client_deta_api: ^0.0.1 copied to clipboard
Implementation of the `client_deta_api` package using the Dio package.
dio_client_deta_api #
Implementation of the client_deta_api package using the Dio package. This implementation is used as an http request client in the deta package that interacts with the Deta platform API.
Usage #
// start deta instance using client `DioClientDetaApi`.
final deta = Deta(projectKey: projectKey, client: DioClientDetaApi(dio: Dio()));
// Connect to the `lenguages` DetaBase.
final detabase = deta.base('lenguages');
// Get a spesific element form the key.
final item = await detabase.get('dart-g');