fromDartListChatCallDeviceIdNullableToGraphQLListChatCallDeviceIdNullable function
- List<
ChatCallDeviceId?> v
Implementation
List<String?>
fromDartListChatCallDeviceIdNullableToGraphQLListChatCallDeviceIdNullable(
List<ChatCallDeviceId?> v,
) =>
v
.map(
(e) =>
fromDartChatCallDeviceIdNullableToGraphQLChatCallDeviceIdNullable(
e,
),
)
.toList();