undeleteMessageById method

Future<EncryptedMessage> undeleteMessageById(
  1. String id,
  2. String rev
)

Implementation

Future<EncryptedMessage> undeleteMessageById(String id, String rev) async {
	return await CardinalSdkPlatformInterface.instance.apis.messageBasic.undeleteMessageById(
		_sdkId,
		id,
		rev,
	);
}