Line data Source code
1 : /// This is used to generate uniq id 2 : class IdGenerator { 3 : int _currentId = 0; 4 : 5 6 : int call() => _currentId++; 6 : }