getPinBlock abstract method

Stream<PinInputEvent> getPinBlock({
  1. required int ppkIndex,
  2. required String pan,
  3. required String hint,
  4. int min = 4,
  5. int max = 4,
  6. int timeoutMillis = 60000,
})

Opens the PED for online PIN entry. The stream carries keypress feedback and ends with exactly one terminal event: confirmed, cancelled, timed out or failed.

Implementation

Stream<PinInputEvent> getPinBlock({
  required int ppkIndex,
  required String pan,
  required String hint,
  int min = 4,
  int max = 4,
  int timeoutMillis = 60000,
});