textFieldValueByTypeSource method

Future<String?> textFieldValueByTypeSource(
  1. FieldType fieldType,
  2. 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,
  ]);
}