KeyboardInsertedContent constructor

const KeyboardInsertedContent(
  1. {required String mimeType,
  2. required String uri,
  3. Uint8List? data}
)

Creates an object to represent content that is inserted from the virtual keyboard.

The mime type and URI will always be provided, but the bytedata may be null.

Implementation

const KeyboardInsertedContent({required this.mimeType, required this.uri, this.data});