CvClipboardData constructor

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

Constructs a CvClipboardData.

Parameters:

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

Implementation

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