shareToSystem method
use system share ui
Implementation
Future<String?> shareToSystem({required String msg}) async {
String? result;
try {
result = await _channel.invokeMethod<String>(_methodSystemShare, {'msg': msg});
} catch (e) {
return 'false';
}
return result;
}