QueryParameterTypeStructTypes.fromJson constructor
QueryParameterTypeStructTypes.fromJson(
- Map json_
Implementation
QueryParameterTypeStructTypes.fromJson(core.Map json_)
: this(
description: json_.containsKey('description')
? json_['description'] as core.String
: null,
name: json_.containsKey('name') ? json_['name'] as core.String : null,
type: json_.containsKey('type')
? QueryParameterType.fromJson(
json_['type'] as core.Map<core.String, core.dynamic>)
: null,
);