FlFormTextEditingController.fromValue constructor

FlFormTextEditingController.fromValue({
  1. required TextEditingValue value,
  2. required String name,
  3. FlValidator? validator,
  4. String? schemaName,
  5. FlSchemaProivder? schema,
  6. FlForm? form,
})

Implementation

FlFormTextEditingController.fromValue({
  required TextEditingValue value,
  required this.name,
  this.validator,
  this.schemaName,
  this.schema,
  this.form,
}) : super.fromValue(value) {
  super.addListener(_listener);
  _sub = _createSubscription();
}