sentFileMessage method
Implementation
@override
Future<dynamic> sentFileMessage(String? file, String jid) async {
var re = "";
try {
final result = await mirrorFlyMethodChannel
.invokeMethod("sent file", {"file": file, "jid": jid, "message": ""});
debugPrint('RESULT $result');
return result;
} on PlatformException catch (e) {
debugPrint("er $e");
return re;
}
}