fromGraphQLListNullableChatDirectLinkVersionNullableToDartListNullableChatDirectLinkVersionNullable function

List<ChatDirectLinkVersion?>? fromGraphQLListNullableChatDirectLinkVersionNullableToDartListNullableChatDirectLinkVersionNullable(
  1. List<Object?>? v
)

Implementation

List<ChatDirectLinkVersion?>?
fromGraphQLListNullableChatDirectLinkVersionNullableToDartListNullableChatDirectLinkVersionNullable(
  List<Object?>? v,
) => v
    ?.map(
      (e) =>
          fromGraphQLChatDirectLinkVersionNullableToDartChatDirectLinkVersionNullable(
            e as String?,
          ),
    )
    .toList();