entriesCount method

  1. @override
int entriesCount()
override

Total entry count. Used by operators / metrics.

Implementation

@override
int entriesCount() =>
    _db.raw.select('SELECT COUNT(*) c FROM notifications;').first['c'] as int;