PlaylistPlayer.fromJson constructor

PlaylistPlayer.fromJson(
  1. Map json_
)

Implementation

PlaylistPlayer.fromJson(core.Map json_)
    : this(
        embedHtml: json_.containsKey('embedHtml')
            ? json_['embedHtml'] as core.String
            : null,
      );