textFieldValueByTypeSourceOriginal method

Future<String?> textFieldValueByTypeSourceOriginal(
  1. FieldType fieldType,
  2. ResultType source,
  3. bool original
)

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

Implementation

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