sentence method

String sentence({
  1. int nWords = 10,
})
inherited

Generates fake sentence. Example:

faker.sentence() // this a lorem ipsum test

Implementation

String sentence({int nWords = 10}) {
  if (nWords < 0) return "";
  return words(nWords: nWords).join(" ").toSentenceCase() + ".";
}