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