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