fromDartListChatDirectLinkVersionNullableToGraphQLListChatDirectLinkVersionNullable function

List<String?> fromDartListChatDirectLinkVersionNullableToGraphQLListChatDirectLinkVersionNullable(
  1. List<ChatDirectLinkVersion?> v
)

Implementation

List<String?>
fromDartListChatDirectLinkVersionNullableToGraphQLListChatDirectLinkVersionNullable(
  List<ChatDirectLinkVersion?> v,
) =>
    v
        .map(
          (e) =>
              fromDartChatDirectLinkVersionNullableToGraphQLChatDirectLinkVersionNullable(
                e,
              ),
        )
        .toList();