Flutter Engine Uber Docs
Docs for the entire Flutter Engine repo.
 
Loading...
Searching...
No Matches
FlutterPasteboard Class Reference

#include <FlutterEngine_Internal.h>

Inheritance diagram for FlutterPasteboard:
FakePasteboard

Instance Methods

(NSInteger) - clearContents
 
(NSString *) - stringForType:
 
(BOOL- setString:forType:
 

Detailed Description

An NSPasteboard wrapper object to allow for substitution of a fake in unit tests.

Definition at line 288 of file FlutterEngine.mm.

Method Documentation

◆ clearContents

- (NSInteger) clearContents

Definition at line 192 of file FlutterEngine.mm.

290 {
291 return [[NSPasteboard generalPasteboard] clearContents];
292}

◆ setString:forType:

- (BOOL) setString: (NSString *)  string
forType: (NSPasteboardType)  dataType 

◆ stringForType:

- (NSString *) stringForType: (NSPasteboardType)  dataType

Definition at line 192 of file FlutterEngine.mm.

294 :(NSPasteboardType)dataType {
295 return [[NSPasteboard generalPasteboard] stringForType:dataType];
296}

The documentation for this class was generated from the following files: