shareWith method

Future<Message> shareWith(
  1. String delegateId,
  2. Message message, {
  3. MessageShareOptions? options,
})

Implementation

Future<Message> shareWith(String delegateId, Message message, { MessageShareOptions? options }) async {
	return await CardinalSdkPlatformInterface.instance.apis.message.tryAndRecover.shareWith(
		_sdkId,
		delegateId,
		message,
		options,
	);
}