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