SqlCryptoStorage constructor

SqlCryptoStorage(
  1. String tableName,
  2. FutureOr<void> sqlExecute(
    1. String sql
    ),
  3. FutureOr<Iterable<Map<String, Object?>>?> sqlSelect(
    1. String sql
    ),
  4. Cipher algorithm,
  5. SecretKey secretKey,
)

Implementation

SqlCryptoStorage(this.tableName, this.sqlExecute, this.sqlSelect, this.algorithm, this.secretKey);