SentryRuntime.fromJson constructor
Deserializes a SentryRuntime from JSON Map.
Implementation
factory SentryRuntime.fromJson(Map<String, dynamic> data) => SentryRuntime(
name: data['name'],
version: data['version'],
compiler: data['compiler'],
rawDescription: data['raw_description'],
build: data['build'],
);