removeExternalJwtConfig method

Future<Group> removeExternalJwtConfig(
  1. String groupId,
  2. String key
)

Implementation

Future<Group> removeExternalJwtConfig(String groupId, String key) async {
	return await CardinalSdkPlatformInterface.instance.apis.group.removeExternalJwtConfig(
		_sdkId,
		groupId,
		key,
	);
}