fromDartListChatContactsCursorNullableToGraphQLListChatContactsCursorNullable function
Implementation
List<String?>
fromDartListChatContactsCursorNullableToGraphQLListChatContactsCursorNullable(
List<ChatContactsCursor?> v,
) =>
v
.map(
(e) =>
fromDartChatContactsCursorNullableToGraphQLChatContactsCursorNullable(
e,
),
)
.toList();