Flutter macOS Embedder
FlutterPasteboard Class Reference

#import <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 281 of file FlutterEngine.mm.

Method Documentation

◆ clearContents

- (NSInteger) clearContents

Definition at line 283 of file FlutterEngine.mm.

283  {
284  return [[NSPasteboard generalPasteboard] clearContents];
285 }

◆ setString:forType:

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

◆ stringForType:

- (NSString *) stringForType: (NSPasteboardType)  dataType

Definition at line 287 of file FlutterEngine.mm.

287  :(NSPasteboardType)dataType {
288  return [[NSPasteboard generalPasteboard] stringForType:dataType];
289 }

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