loremByParagrafCount function

String loremByParagrafCount({
  1. required int count,
})

Implementation

String loremByParagrafCount({required int count}) {
  String result = '';
  for (int i = 0; i < count; i++) {
    result += '$loremParagraf \n';
  }
  return result;
}