schmucklicloud_storage 1.0.0 copy "schmucklicloud_storage: ^1.0.0" to clipboard
schmucklicloud_storage: ^1.0.0 copied to clipboard

The official schmuckliCloud Storage SDK for Dart. Use this SDK if you want store and manage data from the Cloud.

schmuckliCloud Storage SDK for Dart #

This is the official SDK for the schmuckliCloud Storage service for Dart.

Get started #

To install the package, just add the following line in your existing pubspec.yaml file under dependencies:

dependencies:
    schmucklicloud_storage: <SELECT THE NEWEST VERSION>

After that, just install the package on your local machine via the command:

pub get

Now you are ready to use the schmuckliCloud storage service on your Dart/Flutter projects.

Use in your project #

Before you can use the function inside of your project, you also have to import the package in your file, where you will using the service.

//Import the package
import 'package:schmucklicloud_storage/main.dart';

//Setup a referene
sCStorage reference = new sCStorage("<YOUR_APP_ID>", "<YOUR_APP_SECRET>");

//Define the bucket id and the dataset id
reference.setBucket(12);
reference.setDataset("my_dataset");

//Instead of a dataset, you also can use the auth token, when you want to use user specific data
reference.setAuthToken("<AUTH_TOKEN>");

As you can see in the example above, you have to create a reference to use then the function to insert, update, delete and get the data from the backend.

1
likes
40
pub points
0%
popularity

Publisher

verified publisherschmuckli.cloud

The official schmuckliCloud Storage SDK for Dart. Use this SDK if you want store and manage data from the Cloud.

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation

License

MIT (LICENSE)

Dependencies

http

More

Packages that depend on schmucklicloud_storage