FurryChat/lib/utils/database/unsupported.dart

13 lines
276 B
Dart
Raw Normal View History

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