patchbayGenerateOwnerToken function
Implementation
String patchbayGenerateOwnerToken() {
final Random random = Random.secure();
final List<int> bytes = List<int>.generate(
16,
(_) => random.nextInt(256),
growable: false,
);
return base64UrlEncode(bytes).replaceAll('=', '');
}