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