newRandomKey function

String newRandomKey()

Implementation

String newRandomKey() {
  final uuid = Uuid();
  return uuid.v4();
}