text abstract method

String? text({
  1. required String label,
  2. String? description,
  3. String initial = '',
  4. bool enabled = true,
})

Creates text input field with label, description and initial value.

Implementation

String? text({
  required String label,
  String? description,
  String initial = '',
  bool enabled = true,
});