PublishState.fromJson constructor

PublishState.fromJson(
  1. Map json_
)

Implementation

PublishState.fromJson(core.Map json_)
  : this(
      isAcceptingResponses: json_['isAcceptingResponses'] as core.bool?,
      isPublished: json_['isPublished'] as core.bool?,
    );