Skip to content

simonisinger/kuebiko-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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');
}

About

No description, website, or topics provided.

Resources

License

Unknown, Unknown licenses found

Licenses found

Unknown
LICENSE
Unknown
LICENSE.md

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages