fromDartListNullableChatItemIdNullableToGraphQLListNullableChatItemIdNullable function

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

Implementation

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