kuebiko_client 0.1.0 copy "kuebiko_client: ^0.1.0" to clipboard
kuebiko_client: ^0.1.0 copied to clipboard

outdated

The API Client library for the ebook library software Kuebiko

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');
}
1
likes
0
pub points
0%
popularity

Publisher

unverified uploader

The API Client library for the ebook library software Kuebiko

Homepage

License

unknown (LICENSE)

Dependencies

http, image, version

More

Packages that depend on kuebiko_client