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