removeParticipant method

Future<EncryptedTopic> removeParticipant(
  1. String entityId,
  2. String dataOwnerId
)

Implementation

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