FormTextBlock constructor

FormTextBlock({
  1. required String id,
  2. required String pageId,
  3. required int positionOnPage,
  4. required String text,
  5. required String type,
  6. required FormTextBlockStyle style,
})

Creates a FormTextBlock Object

Implementation

FormTextBlock({
  required this.id,
  required this.pageId,
  required this.positionOnPage,
  required this.text,
  required this.type,
  required this.style,
});