fromGraphQLListNullableChatCallDeviceIdNullableToDartListNullableChatCallDeviceIdNullable function
Implementation
List<ChatCallDeviceId?>?
fromGraphQLListNullableChatCallDeviceIdNullableToDartListNullableChatCallDeviceIdNullable(
List<Object?>? v,
) => v
?.map(
(e) => fromGraphQLChatCallDeviceIdNullableToDartChatCallDeviceIdNullable(
e as String?,
),
)
.toList();