createClient function
Ichibase
createClient(
- String url,
- String anonKey, {
- Client? httpClient,
- SessionStore? store,
- String storageKey = 'ichibase.session',
Create a client. Mirrors the TypeScript createClient(url, anonKey).
Implementation
Ichibase createClient(
String url,
String anonKey, {
http.Client? httpClient,
SessionStore? store,
String storageKey = 'ichibase.session',
}) =>
Ichibase(url, anonKey,
httpClient: httpClient, store: store, storageKey: storageKey);