undeleteDeviceById method

Future<Device> undeleteDeviceById(
  1. String id,
  2. String rev
)

Implementation

Future<Device> undeleteDeviceById(String id, String rev) async {
	return await CardinalSdkPlatformInterface.instance.apis.device.undeleteDeviceById(
		_sdkId,
		id,
		rev,
	);
}