newGroup method
Implementation
@override
Future<Map<String, dynamic>> newGroup(List<String> inboxIds, Map<String, String> options) async {
final result = await methodChannel.invokeMethod('newGroup', {
'inboxIds': inboxIds,
'options': options,
});
return Map<String, dynamic>.from(result ?? {});
}