StoredContentsExample.fromJson constructor
Implementation
factory StoredContentsExample.fromJson(Map<String, dynamic> json) {
return StoredContentsExample(
searchKey: json['searchKey'] ?? '',
contentsExample: decode(
json['contentsExample'],
ContentsExample.fromJson,
),
searchKeyGenerationMethod: decode(
json['searchKeyGenerationMethod'],
StoredContentsExample_SearchKeyGenerationMethod.fromJson,
),
);
}