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