getInputValue method

String getInputValue(
  1. String label
)

Implementation

String getInputValue(String label) {
  return _inputs.firstWhere((i) => i.label == label).controller.text;
}