fromDartListOperationsCursorNullableToGraphQLListOperationsCursorNullable function

List<String?> fromDartListOperationsCursorNullableToGraphQLListOperationsCursorNullable(
  1. List<OperationsCursor?> v
)

Implementation

List<String?>
fromDartListOperationsCursorNullableToGraphQLListOperationsCursorNullable(
  List<OperationsCursor?> v,
) => v
    .map(
      (e) =>
          fromDartOperationsCursorNullableToGraphQLOperationsCursorNullable(e),
    )
    .toList();