SuperBatchWebResources.fromJson constructor
Implementation
factory SuperBatchWebResources.fromJson(Map<String, Object?> json) {
  return SuperBatchWebResources(
    uris: json[r'uris'] != null
        ? SuperBatchWebResourcesUris.fromJson(
            json[r'uris']! as Map<String, Object?>)
        : null,
    tags: json[r'tags'] != null
        ? SuperBatchWebResourcesTags.fromJson(
            json[r'tags']! as Map<String, Object?>)
        : null,
    metatags: json[r'metatags'] as String?,
    expandable: json[r'_expandable'] as Map<String, Object?>?,
  );
}