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