fromGraphQLListIncomingChatCallsCursorToDartListIncomingChatCallsCursor function
Implementation
List<IncomingChatCallsCursor>
fromGraphQLListIncomingChatCallsCursorToDartListIncomingChatCallsCursor(
List<Object?> v,
) => v
.map(
(e) => fromGraphQLIncomingChatCallsCursorToDartIncomingChatCallsCursor(
e as String,
),
)
.toList();