Last updated:
0 purchases
kuebiko client
Kuebiko Dart API Client Library #
Usage:
import 'package:kuebiko_client/kuebiko_client.dart';
main(){
// With API Key
KuebikoConfig config = KuebikoConfig(
appName: 'Demo App',
appVersion: Version(1, 0, 0),
baseUrl: Uri.parse('https://demo.kuebiko.app'),
deviceName: 'demo Device',
apiKey: 'someApiKey'
);
KuebikoClient client = KuebikoClient(config);
// Without API Key
KuebikoConfig config = KuebikoConfig(
appName: 'Demo App',
appVersion: Version(1, 0, 0),
baseUrl: Uri.parse('https://demo.kuebiko.app'),
deviceName: 'demo Device',
);
KuebikoClient client = KuebikoClient.login(config, 'username', 'password');
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.