textFieldValueByType method
- VisualFieldType fieldType
Allows you to get a value of a text field.
Implementation
Future<String?> textFieldValueByType(
VisualFieldType fieldType,
) async {
return await _bridge.invokeMethod(
"textFieldValueByType",
[
rawResult,
fieldType.value,
],
);
}