QrTextReceivedEvent constructor
QrTextReceivedEvent(
- void eventHandler(
- QrTextReceivedPayload payload
Implementation
QrTextReceivedEvent(void Function(QrTextReceivedPayload payload) eventHandler)
: super(
TelegramEventType.qrTextReceived,
(QrTextReceivedPayloadJSObject payload) {
eventHandler(QrTextReceivedPayload(payload.data.toDart));
}.toJS,
);