disable2faForUserWithGroup method

Future<void> disable2faForUserWithGroup(
  1. String sdkId,
  2. String userId,
  3. String groupId
)

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),
		}
	);
}