generateKey<T> static method

String generateKey<T>([
  1. String? type
])

Implementation

static String generateKey<T>([String? type]) {
  type = getType<T>(type);
  return StringUtils.typify(type, uuid.v1().substring(0, 8));
}