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