PlaylistImageSnippet.fromJson constructor

PlaylistImageSnippet.fromJson(
  1. Map json_
)

Implementation

PlaylistImageSnippet.fromJson(core.Map json_)
    : this(
        height: json_['height'] as core.int?,
        playlistId: json_['playlistId'] as core.String?,
        type: json_['type'] as core.String?,
        width: json_['width'] as core.int?,
      );