UsfmParagraph constructor

UsfmParagraph({
  1. required List<ParagraphElement> content,
  2. required ParagraphFormat format,
  3. Set<int>? wordsOfJesusIds,
})

Implementation

UsfmParagraph({
  required this.content,
  required this.format,
  Set<int>? wordsOfJesusIds,
}) : wordsOfJesusIds = wordsOfJesusIds ?? <int>{};