fromGraphQLListDirectLinksCursorNullableToDartListDirectLinksCursorNullable function

List<DirectLinksCursor?> fromGraphQLListDirectLinksCursorNullableToDartListDirectLinksCursorNullable(
  1. List<Object?> v
)

Implementation

List<DirectLinksCursor?>
fromGraphQLListDirectLinksCursorNullableToDartListDirectLinksCursorNullable(
  List<Object?> v,
) => v
    .map(
      (e) =>
          fromGraphQLDirectLinksCursorNullableToDartDirectLinksCursorNullable(
            e as String?,
          ),
    )
    .toList();