StoredContentsExampleParameters.fromJson constructor
Implementation
factory StoredContentsExampleParameters.fromJson(Map<String, dynamic> json) {
return StoredContentsExampleParameters(
searchKey: json['searchKey'],
contentSearchKey: decode(
json['contentSearchKey'],
StoredContentsExampleParameters_ContentSearchKey.fromJson,
),
functionNames: decode(
json['functionNames'],
ExamplesArrayFilter.fromJson,
),
);
}