DebugResponse.fromJson constructor
DebugResponse.fromJson(
- Map json_
Implementation
DebugResponse.fromJson(core.Map json_)
: this(
gsrRequest: json_['gsrRequest'] as core.String?,
gsrResponse: json_['gsrResponse'] as core.String?,
searchResponse:
json_.containsKey('searchResponse')
? SearchResponse.fromJson(
json_['searchResponse']
as core.Map<core.String, core.dynamic>,
)
: null,
);