sendFile method
Send file
Implementation
@override
Future<bool> sendFile(String filePath) async {
try {
final result = await _channel.invokeMethod<bool>('sendFile', {
'filePath': filePath,
});
return result ?? false;
} catch (e) {
debugPrint('Send file error: $e');
return false;
}
}