fromDartListNullableChatCallDeviceIdToGraphQLListNullableChatCallDeviceId function

List<String>? fromDartListNullableChatCallDeviceIdToGraphQLListNullableChatCallDeviceId(
  1. List<ChatCallDeviceId>? v
)

Implementation

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