paragraphs method

String paragraphs({
  1. int count = 3,
})

Generate lorem ipsum paragraphs.

Implementation

String paragraphs({int count = 3}) {
  return List.generate(
    count,
    (_) => sentences(count: randomInt(3, 6)),
  ).join('\n\n');
}