text static method
Sends a text to other apps.
Implementation
static void text(String title, String text, String mimeType) {
Map argsMap = <String, String>{
'title': title,
'text': text,
'mimeType': mimeType
};
_channel.invokeMethod('text', argsMap);
}