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