Flutter iOS Embedder
FlutterChannelKeyResponder Class Reference

#import <FlutterChannelKeyResponder.h>

Inheritance diagram for FlutterChannelKeyResponder:
<FlutterKeyPrimaryResponder>

Instance Methods

(nonnull instancetype) - initWithChannel:
 
- Instance Methods inherited from <FlutterKeyPrimaryResponder>
(void) - handlePress:callback:
 

Detailed Description

A primary responder of |FlutterKeyboardManager| that handles events by sending the raw information through a method channel.

This class corresponds to the RawKeyboard API in the framework.

Definition at line 20 of file FlutterChannelKeyResponder.h.

Method Documentation

◆ initWithChannel:

- (nonnull instancetype) initWithChannel: (nonnull FlutterBasicMessageChannel*)  channel

Create an instance by specifying the method channel to use.

Definition at line 98 of file FlutterChannelKeyResponder.mm.

98  :(nonnull FlutterBasicMessageChannel*)channel {
99  self = [super init];
100  if (self != nil) {
101  _channel = channel;
102  _pressedModifiers = 0;
103  }
104  return self;
105 }

The documentation for this class was generated from the following files:
FlutterBasicMessageChannel
Definition: FlutterChannels.h:37