PostPerUserInfo.fromJson constructor

PostPerUserInfo.fromJson(
  1. Map json_
)

Implementation

PostPerUserInfo.fromJson(core.Map json_)
  : this(
      blogId: json_['blogId'] as core.String?,
      hasEditAccess: json_['hasEditAccess'] as core.bool?,
      kind: json_['kind'] as core.String?,
      postId: json_['postId'] as core.String?,
      userId: json_['userId'] as core.String?,
    );