sendImageToGroup method
Implementation
@override
Future<bool> sendImageToGroup({
required String id,
required String filePath,
required String groupId,
}) async {
return await _methodChannel
.invokeMethod<bool>('sendImageToGroup', <String, String>{
'id': id,
'filePath': filePath,
'groupId': groupId,
}) ??
false;
}