FormDataDisplay constructor

const FormDataDisplay({
  1. Key? key,
  2. required Map<String, dynamic> data,
  3. TextStyle? textStyle,
  4. TextStyle? labelStyle,
  5. List<String> excludeFields = const ['formId', 'responseEventType'],
  6. bool displayAllFields = false,
  7. String separator = ', ',
  8. bool showLabels = true,
  9. String labelSeparator = ': ',
})

Implementation

const FormDataDisplay({
  Key? key,
  required this.data,
  this.textStyle,
  this.labelStyle,
  this.excludeFields = const ['formId', 'responseEventType'],
  this.displayAllFields = false,
  this.separator = ', ',
  this.showLabels = true,
  this.labelSeparator = ': ',
}) : super(key: key);