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