disable2faForUserWithGroup method
Implementation
Future<void> disable2faForUserWithGroup(String sdkId, String userId, String groupId) async {
final res = await _methodChannel.invokeMethod<String>(
'UserApi.disable2faForUserWithGroup',
{
"sdkId": sdkId,
"userId": jsonEncode(userId),
"groupId": jsonEncode(groupId),
}
);
}