Flutter iOS Embedder
FlutterViewControllerTest Class Reference
Inheritance diagram for FlutterViewControllerTest:

Instance Methods

(void) - sendMessage:reply:
 

Properties

id mockEngine
 
id mockTextInputPlugin
 
id messageSent
 

Detailed Description

Definition at line 165 of file FlutterViewControllerTest.mm.

Method Documentation

◆ sendMessage:reply:

- (void) sendMessage: (id _Nullable)  message
reply: (FlutterReply _Nullable)  callback 

Definition at line 1646 of file FlutterViewControllerTest.mm.

1646  :(id _Nullable)message reply:(FlutterReply _Nullable)callback {
1647  NSMutableDictionary* replyMessage = [@{
1648  @"handled" : @YES,
1649  } mutableCopy];
1650  // Response is async, so we have to post it to the run loop instead of calling
1651  // it directly.
1652  self.messageSent = message;
1653  CFRunLoopPerformBlock(CFRunLoopGetCurrent(), fml::MessageLoopDarwin::kMessageLoopCFRunLoopMode,
1654  ^() {
1655  callback(replyMessage);
1656  });
1657 }

Property Documentation

◆ messageSent

- (id) messageSent
readwritenonatomicstrong

Definition at line 168 of file FlutterViewControllerTest.mm.

◆ mockEngine

- (id) mockEngine
readwritenonatomicstrong

Definition at line 166 of file FlutterViewControllerTest.mm.

◆ mockTextInputPlugin

- (id) mockTextInputPlugin
readwritenonatomicstrong

Definition at line 167 of file FlutterViewControllerTest.mm.


The documentation for this class was generated from the following file:
FlutterReply
NS_ASSUME_NONNULL_BEGIN typedef void(^ FlutterReply)(id _Nullable reply)