initLocalDatabase static method
Implementation
static Future<LineupDatabase> initLocalDatabase(
String databaseName, {
int? version,
LineupEncryptService? customEncryptService,
String? encryptSecureKey,
String? encryptExtraSecureKey,
}) =>
_databaseConnection.local(
databaseName: databaseName,
version: version,
encrypt: customEncryptService ??
EncryptServiceSample(
encryptSecureKey ?? Key.fromSecureRandom(32).base64,
encryptExtraSecureKey,
),
);