fromDartListRecentChatsCursorNullableToGraphQLListRecentChatsCursorNullable function
Implementation
List<String?>
fromDartListRecentChatsCursorNullableToGraphQLListRecentChatsCursorNullable(
List<RecentChatsCursor?> v,
) =>
v
.map(
(e) =>
fromDartRecentChatsCursorNullableToGraphQLRecentChatsCursorNullable(
e,
),
)
.toList();