fromGraphQLListNullableChatItemsCursorToDartListNullableChatItemsCursor function
Implementation
List<ChatItemsCursor>?
fromGraphQLListNullableChatItemsCursorToDartListNullableChatItemsCursor(
List<Object?>? v,
) =>
v
?.map(
(e) => fromGraphQLChatItemsCursorToDartChatItemsCursor(e as String),
)
.toList();