VkClipboardData constructor

const VkClipboardData({
  1. required String plainText,
  2. required String htmlText,
})

Constructs a VkClipboardData.

Parameters:

  • plainText: The plain text to copy to the clipboard.
  • htmlText: The HTML text to copy to the clipboard.

Implementation

const VkClipboardData({
  required this.plainText,
  required this.htmlText,
});