addParticipant method

Future<EncryptedTopic> addParticipant(
  1. String entityId,
  2. String dataOwnerId,
  3. TopicRole topicRole
)

Implementation

Future<EncryptedTopic> addParticipant(String entityId, String dataOwnerId, TopicRole topicRole) async {
	return await CardinalSdkPlatformInterface.instance.apis.topicBasic.addParticipant(
		_sdkId,
		entityId,
		dataOwnerId,
		topicRole,
	);
}