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 170 of file FlutterViewControllerTest.mm.

Method Documentation

◆ sendMessage:reply:

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

Definition at line 1688 of file FlutterViewControllerTest.mm.

1688  :(id _Nullable)message reply:(FlutterReply _Nullable)callback {
1689  NSMutableDictionary* replyMessage = [@{
1690  @"handled" : @YES,
1691  } mutableCopy];
1692  // Response is async, so we have to post it to the run loop instead of calling
1693  // it directly.
1694  self.messageSent = message;
1695  CFRunLoopPerformBlock(CFRunLoopGetCurrent(), fml::MessageLoopDarwin::kMessageLoopCFRunLoopMode,
1696  ^() {
1697  callback(replyMessage);
1698  });
1699 }

Property Documentation

◆ messageSent

- (id) messageSent
readwritenonatomicstrong

Definition at line 173 of file FlutterViewControllerTest.mm.

◆ mockEngine

- (id) mockEngine
readwritenonatomicstrong

Definition at line 171 of file FlutterViewControllerTest.mm.

◆ mockTextInputPlugin

- (id) mockTextInputPlugin
readwritenonatomicstrong

Definition at line 172 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)