fromDartListChatItemIdNullableToGraphQLListChatItemIdNullable function

List<String?> fromDartListChatItemIdNullableToGraphQLListChatItemIdNullable(
  1. List<ChatItemId?> v
)

Implementation

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