AccessSessionSparkApplicationSqlQueryResponse.fromJson constructor
AccessSessionSparkApplicationSqlQueryResponse.fromJson(
- Map json_
Implementation
AccessSessionSparkApplicationSqlQueryResponse.fromJson(core.Map json_)
: this(
executionData: json_.containsKey('executionData')
? SqlExecutionUiData.fromJson(
json_['executionData'] as core.Map<core.String, core.dynamic>)
: null,
);