QueryParameterTypeStructTypes.fromJson constructor

QueryParameterTypeStructTypes.fromJson(
  1. Map json_
)

Implementation

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