mirror of
https://github.com/localsend/localsend.git
synced 2026-06-23 04:10:07 +00:00
11 lines
186 B
Dart
11 lines
186 B
Dart
/// A simple class that provides an id.
|
|
class IdProvider {
|
|
int _id = 0;
|
|
|
|
/// Returns the next id.
|
|
int getNextId() => _id++;
|
|
|
|
/// Resets the id to 0.
|
|
void reset() => _id = 0;
|
|
}
|