fromDartListChatItemIdNullableToGraphQLListChatItemIdNullable function
- List<
ChatItemId?> v
Implementation
List<String?> fromDartListChatItemIdNullableToGraphQLListChatItemIdNullable(
List<ChatItemId?> v,
) =>
v
.map((e) => fromDartChatItemIdNullableToGraphQLChatItemIdNullable(e))
.toList();