fromGraphQLListNullableChatContactsCursorNullableToDartListNullableChatContactsCursorNullable function
Implementation
List<ChatContactsCursor?>?
fromGraphQLListNullableChatContactsCursorNullableToDartListNullableChatContactsCursorNullable(
  List<Object?>? v,
) => v
    ?.map(
      (e) =>
          fromGraphQLChatContactsCursorNullableToDartChatContactsCursorNullable(
            e as String?,
          ),
    )
    .toList();