FlutterClipboard class

A Flutter Clipboard Plugin.

Constructors

FlutterClipboard()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

controlC(String text) Future<bool>
controlC receives a string text and saves to Clipboard returns boolean value
controlV() Future
controlV retrieves the data from clipboard. same as paste But returns dynamic data
copy(String text) Future<void>
copy receives a string text and saves to Clipboard returns void
paste() Future<String>
Paste retrieves the data from clipboard.