getStoredReleaseData method

Future<ReleaseData?> getStoredReleaseData(
  1. String projectId
)

Get data cache by Project ID

Implementation

Future<ReleaseData?> getStoredReleaseData(String projectId) {
  return SdkStore.instance.getReleaseData(projectId);
}