2
0
mirror of https://gitlab.com/famedly/fluffychat.git synced 2025-02-24 18:20:43 +01:00

13 lines
290 B
Dart
Raw Normal View History

2020-05-13 13:58:59 +00:00
import 'package:famedlysdk/famedlysdk.dart';
2020-07-20 15:33:52 +00:00
Future<Database> constructDb(
2020-05-22 12:21:16 +02:00
{bool logStatements = false,
String filename = 'database.sqlite',
2020-07-20 15:33:52 +00:00
String password = ''}) async {
2020-05-13 13:58:59 +00:00
throw 'Platform not supported';
}
Future<String> getLocalstorage(String key) async {
return null;
}