textFieldValueByType method

Future<String?> textFieldValueByType(
  1. FieldType fieldType
)

Allows you to get a value of a text field.

Implementation

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