FastPendingReadOnlyTextField constructor

FastPendingReadOnlyTextField({
  1. Key? key,
  2. required String labelText,
  3. String placeholderText = kFastEmptyString,
  4. bool enableInteractiveSelection = true,
  5. FontWeight fontWeight = kFastFontWeightBold,
  6. bool showHelperBoundaries = true,
  7. TextAlign textAlign = TextAlign.left,
  8. bool isPending = false,
  9. Color? helperTextColor,
  10. Color? highlightColor,
  11. Color? valueTextColor,
  12. String? pendingText,
  13. String? captionText,
  14. Widget? suffixIcon,
  15. String? helperText,
  16. String? valueText,
})

Implementation

FastPendingReadOnlyTextField({
  Key? key,
  required this.labelText,
  this.placeholderText = kFastEmptyString,
  this.enableInteractiveSelection = true,
  this.fontWeight = kFastFontWeightBold,
  this.showHelperBoundaries = true,
  this.textAlign = TextAlign.left,
  this.isPending = false,
  this.helperTextColor,
  this.highlightColor,
  this.valueTextColor,
  this.pendingText,
  this.captionText,
  this.suffixIcon,
  this.helperText,
  this.valueText,
}) : super(key: key);