decompressUuid function

String decompressUuid(
  1. String compressedUuid
)

Implementation

String decompressUuid(String compressedUuid) {
  final guidInt = base36Decode(compressedUuid);
  final hex = guidInt.toRadixString(16).padLeft(32, '0');

  return _formatUuidFromHex(hex);
}