Add code formatting
This commit is contained in:
parent
66ad94df85
commit
d7e1dbcad1
14 changed files with 2063 additions and 1352 deletions
|
|
@ -2,9 +2,13 @@ import 'package:famedlysdk/famedlysdk.dart';
|
|||
import 'package:encrypted_moor/encrypted_moor.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
Database constructDb({bool logStatements = false, String filename = 'database.sqlite', String password = ''}) {
|
||||
Database constructDb(
|
||||
{bool logStatements = false,
|
||||
String filename = 'database.sqlite',
|
||||
String password = ''}) {
|
||||
debugPrint('[Moor] using encrypted moor');
|
||||
return Database(EncryptedExecutor(path: filename, password: password, logStatements: logStatements));
|
||||
return Database(EncryptedExecutor(
|
||||
path: filename, password: password, logStatements: logStatements));
|
||||
}
|
||||
|
||||
Future<String> getLocalstorage(String key) async {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue