formatUuid function

String formatUuid(
  1. List<int> uuid
)

Formats the uuid bytes as an uuid.

Implementation

String formatUuid(List<int> uuid) => Uuid.unparse(uuid);