import 'package:uuid/uuid.dart'; class UID{ static String getShort() { return const Uuid().v4().replaceAll('-', '').substring(0, 12); } }