You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fluffychat/lib/utils/database/unsupported.dart

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;
}