disable2faForUserWithGroup method

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

Implementation

Future<void> disable2faForUserWithGroup(String userId, String groupId) async {
	return await CardinalSdkPlatformInterface.instance.apis.user.disable2faForUserWithGroup(
		_sdkId,
		userId,
		groupId,
	);
}