textFieldValueByTypeLcid method
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,
]);
}