sentence function
It returns a random sentence from the list of sentences
Implementation
String sentence() => sentences.toList()[Random().nextInt(sentences.length)];
It returns a random sentence from the list of sentences
String sentence() => sentences.toList()[Random().nextInt(sentences.length)];