GroupUserList.fromDto constructor

GroupUserList.fromDto(
  1. GroupUserList dto
)

Implementation

factory GroupUserList.fromDto(api.GroupUserList dto) => GroupUserList(
      cursor: dto.cursor,
      groupUsers: dto.groupUsers.map((e) => GroupUser.fromDto(e)).toList(growable: false),
    );