2
0
mirror of https://gitlab.com/famedly/fluffychat.git synced 2025-06-21 10:07:26 +02:00
2020-07-20 15:33:52 +00:00

13 lines
290 B
Dart

import 'package:famedlysdk/famedlysdk.dart';
Future<Database> constructDb(
{bool logStatements = false,
String filename = 'database.sqlite',
String password = ''}) async {
throw 'Platform not supported';
}
Future<String> getLocalstorage(String key) async {
return null;
}