randomNumber static method
Generates a random number based on the current timestamp.
Implementation
static String randomNumber() {
String s = DateTime.now().millisecondsSinceEpoch.toString();
return s;
}
Generates a random number based on the current timestamp.
static String randomNumber() {
String s = DateTime.now().millisecondsSinceEpoch.toString();
return s;
}