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