updateDesignDoc method

Future<bool> updateDesignDoc(
  1. String entityName, {
  2. bool? warmup,
})

Implementation

Future<bool> updateDesignDoc(String entityName, { bool? warmup }) async {
	return await CardinalSdkPlatformInterface.instance.apis.system.updateDesignDoc(
		_sdkId,
		entityName,
		warmup,
	);
}