fromResponse static method
- required ClientsResponse response,
Implementation
static ClientsEntity fromResponse({
required ClientsResponse response,
}) =>
ClientsEntity(
users: response.users
.map(
(ClientUserResponse clientUserResponse) =>
ClientUserMapper.fromResponse(
response: clientUserResponse,
),
)
.toList(),
);