getDescription function
Implementation
String getDescription() {
final startAt = _rand.nextInt(_description.length ~/ 2);
return _description.substring(
startAt,
startAt + getInt(),
);
}
String getDescription() {
final startAt = _rand.nextInt(_description.length ~/ 2);
return _description.substring(
startAt,
startAt + getInt(),
);
}