10 lines
263 B
Dart
10 lines
263 B
Dart
import 'package:famedlysdk/famedlysdk.dart';
|
|
|
|
Database constructDb({bool logStatements = false, String filename = 'database.sqlite', String password = ''}) {
|
|
throw 'Platform not supported';
|
|
}
|
|
|
|
Future<String> getLocalstorage(String key) async {
|
|
return null;
|
|
}
|