Get the number of records stored in the database as a Uint64
Uint64
@override int count() { var n = 0; final iter = entries(); while (iter.moveNext()) { n++; } return n; }