kuebiko_client

Last updated:

0 purchases

kuebiko_client Image
kuebiko_client Images
Add to Cart

Description:

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

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.