fromGraphQLListChatDirectLinkVersionNullableToDartListChatDirectLinkVersionNullable function

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

Implementation

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