fromGraphQLListRecentChatsCursorToDartListRecentChatsCursor function
Implementation
List<RecentChatsCursor>
fromGraphQLListRecentChatsCursorToDartListRecentChatsCursor(List<Object?> v) =>
v
.map(
(e) =>
fromGraphQLRecentChatsCursorToDartRecentChatsCursor(e as String),
)
.toList();