mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-08 13:09:30 +01:00
13 lines
282 B
Dart
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;
|
|
}
|