enable2faForUserWithGroup method

Future<void> enable2faForUserWithGroup(
  1. String userId,
  2. String groupId,
  3. Enable2faRequest request
)

Implementation

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