fromDartListNullableChatDirectLinkVersionNullableToGraphQLListNullableChatDirectLinkVersionNullable function

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

Implementation

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