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