fromGraphQLListNullableChatContactsCursorToDartListNullableChatContactsCursor function
Implementation
List<ChatContactsCursor>?
fromGraphQLListNullableChatContactsCursorToDartListNullableChatContactsCursor(
List<Object?>? v,
) => v
?.map(
(e) => fromGraphQLChatContactsCursorToDartChatContactsCursor(e as String),
)
.toList();