MembershipCount.fromJson constructor

MembershipCount.fromJson(
  1. Map json_
)

Implementation

MembershipCount.fromJson(core.Map json_)
  : this(
      joinedDirectHumanUserCount:
          json_['joinedDirectHumanUserCount'] as core.int?,
      joinedGroupCount: json_['joinedGroupCount'] as core.int?,
    );