GroupMember.fromJson constructor
Implementation
factory GroupMember.fromJson(Map<String, dynamic> json) {
return GroupMember(
subject: AccessSubject.fromJson((json['subject'] as Map).cast<String, dynamic>()),
directRoles: (json['direct_roles'] as List? ?? const []).whereType<String>().toList(),
);
}