copyToClipBoard method

Future<String> copyToClipBoard(
  1. String message
)

Copies text to the device clipboard.

message The text to copy to clipboard.

Returns a String indicating the result of the operation.

Implementation

Future<String> copyToClipBoard(String message) {
  return EasySocialSharePlatform.instance.copyToClipBoard(message);
}