Skip to content
Snippets Groups Projects
Commit 3ebebba4 authored by Michael Goderbauer's avatar Michael Goderbauer Committed by Natalie Weizenbaum
Browse files

Fix doc comment (#432)

parent 009327f3
No related branches found
No related tags found
No related merge requests found
......@@ -379,8 +379,7 @@ void invoke(fn()) {
/// Returns a random base64 string containing [bytes] bytes of data.
///
/// [seed] is passed to [math.Random]; [urlSafe] and [addLineSeparator] are
/// passed to [CryptoUtils.bytesToBase64].
/// [seed] is passed to [math.Random].
String randomBase64(int bytes, {int seed}) {
var random = new math.Random(seed);
var data = new Uint8List(bytes);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment