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