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