fromDartListNullableChatCallDeviceIdNullableToGraphQLListNullableChatCallDeviceIdNullable function

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

Implementation

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