AddEnrichmentToAlbumResponse.fromJson constructor

AddEnrichmentToAlbumResponse.fromJson(
  1. Map json_
)

Implementation

AddEnrichmentToAlbumResponse.fromJson(core.Map json_)
    : this(
        enrichmentItem: json_.containsKey('enrichmentItem')
            ? EnrichmentItem.fromJson(json_['enrichmentItem']
                as core.Map<core.String, core.dynamic>)
            : null,
      );