ChalonaDisplaySource constructor

ChalonaDisplaySource(
  1. DataFace source, {
  2. bool editableImagen = false,
  3. Key? key,
  4. Widget builder()?,
  5. TextStyle? style,
  6. StrutStyle? strutStyle,
  7. TextAlign? textAlign,
  8. TextDirection? textDirection,
  9. Locale? locale,
  10. bool? softWrap,
  11. TextOverflow? overflow,
  12. double? textScaleFactor,
  13. int? maxLines,
  14. String? semanticsLabel,
  15. TextWidthBasis? textWidthBasis,
  16. TextHeightBehavior? textHeightBehavior,
  17. Color? selectionColor,
  18. double? width,
  19. double? height,
  20. Widget? loadingChild,
})

Implementation

ChalonaDisplaySource(
  this.source, {
  this.editableImagen = false,
  super.key,
  this.builder,
  this.style,
  this.strutStyle,
  this.textAlign,
  this.textDirection,
  this.locale,
  this.softWrap,
  this.overflow,
  this.textScaleFactor,
  this.maxLines,
  this.semanticsLabel,
  this.textWidthBasis,
  this.textHeightBehavior,
  this.selectionColor,
  this.width,
  this.height,
  this.loadingChild,
}) {
  source.on('refresh', (x) {
    return refresh();
  });
}