createContact method

Future<DecryptedContact> createContact(
  1. DecryptedContact entity
)

Implementation

Future<DecryptedContact> createContact(DecryptedContact entity) async {
	return await CardinalSdkPlatformInterface.instance.apis.contact.createContact(
		_sdkId,
		entity,
	);
}