2
0
mirror of https://gitlab.com/famedly/fluffychat.git synced 2025-07-08 20:57:27 +02:00
2021-06-18 10:29:48 +02:00

13 lines
282 B
Dart

import 'package:matrix/matrix.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;
}