textFieldValueByTypeLcidSource method

Future<String?> textFieldValueByTypeLcidSource(
  1. FieldType fieldType,
  2. LCID lcid,
  3. ResultType source
)

Allows you to get a value of a text field based on LCID and a source type.

Implementation

Future<String?> textFieldValueByTypeLcidSource(
  FieldType fieldType,
  LCID lcid,
  ResultType source,
) async {
  return await _bridge.invokeMethod("textFieldValueByTypeLcidSource", [
    rawResult,
    fieldType.value,
    lcid.value,
    source.value,
  ]);
}