text abstract method

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

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

Implementation

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