generateId static method
Implementation
static String generateId() {
// TODO: Implement a better way to generate unique id
return 'uid-${DateTime.now().microsecondsSinceEpoch}-${const Uuid().v4()}';
}
static String generateId() {
// TODO: Implement a better way to generate unique id
return 'uid-${DateTime.now().microsecondsSinceEpoch}-${const Uuid().v4()}';
}