DBCrypt constructor

DBCrypt()

Creates a new instance of DBCrypt if one wasn't created previously, otherwise it uses the previously created one.

Implementation

factory DBCrypt() {
  if (_dbcrypt == null) _dbcrypt = new DBCrypt._defaultConstructor();
  return _dbcrypt!;
}