We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3d5471 commit 1d2656bCopy full SHA for 1d2656b
test/example_data.dart
@@ -90,7 +90,7 @@ int _nextUserId() => (_lastUserId += 1 + Random().nextInt(100));
90
int _lastUserId = 1000;
91
92
/// A random email address, different from previously generated ones.
93
-String _nextEmail() => 'mail${_lastEmailSuffix += Random().nextInt(1000)}@example.com';
+String _nextEmail() => 'mail${_lastEmailSuffix += 1 + Random().nextInt(1000)}@example.com';
94
int _lastEmailSuffix = 1000;
95
96
/// Construct an example user.
0 commit comments