import 'package:uuid/uuid.dart'; class IdGenerator { IdGenerator._(); static const Uuid _uuid = Uuid(); static String generate() => _uuid.v4(); }