GoogleChromeManagementV1CountChromeCrashEventsResponse.fromJson constructor
GoogleChromeManagementV1CountChromeCrashEventsResponse.fromJson(
- Map json_
Implementation
GoogleChromeManagementV1CountChromeCrashEventsResponse.fromJson(
core.Map json_)
: this(
crashEventCounts: json_.containsKey('crashEventCounts')
? (json_['crashEventCounts'] as core.List)
.map((value) =>
GoogleChromeManagementV1CountChromeCrashEventsResponseCrashEventCount
.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);