this is the code ``` override fun insertRows(rows...
# realm
o
this is the code
Copy code
override fun insertRows(rows: MutableCollection<RealmUserEntity>): Single<Unit> {
        realmDB = Realm.getDefaultInstance()
        return Single.fromCallable {
            realmDB.executeTransaction {
                realmDB.insert(rows)
            }
        }
    }