Publisher.fromJson constructor

Publisher.fromJson(
  1. Map json_
)

Implementation

Publisher.fromJson(core.Map json_)
  : this(
      issuingAuthority: json_['issuingAuthority'] as core.String?,
      name: json_['name'] as core.String?,
      publisherNamespace: json_['publisherNamespace'] as core.String?,
    );