textFieldValueByTypeLcid method

Future<String?> textFieldValueByTypeLcid(
  1. FieldType fieldType,
  2. LCID lcid
)

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

Implementation

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