QrTextReceivedEvent constructor

QrTextReceivedEvent(
  1. void eventHandler(
    1. QrTextReceivedPayload payload
    )
)

Implementation

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